HomeSort by: relevance | last modified time | path
    Searched refs:ENGINE_ctrl (Results 1 - 16 of 16) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/engine/
eng_ctrl.c 125 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void))
176 if ((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, cmd, NULL, NULL)) < 0) {
195 || (num = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FROM_NAME,
217 if (ENGINE_ctrl(e, num, i, p, f) > 0)
234 || (num = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FROM_NAME,
257 flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num, NULL, NULL);
275 * We deliberately force the result of ENGINE_ctrl() to 0 or 1 rather
280 if (ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0)
292 if (ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0)
315 if (ENGINE_ctrl(e, num, l, NULL, NULL) > 0
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/engine/
eng_ctrl.c 128 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
185 ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, cmd, NULL, NULL)) < 0) {
206 || (num = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FROM_NAME,
227 if (ENGINE_ctrl(e, num, i, p, f) > 0)
244 || (num = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FROM_NAME,
266 flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num, NULL, NULL);
284 * We deliberately force the result of ENGINE_ctrl() to 0 or 1 rather
289 if (ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0)
301 if (ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0)
324 if (ENGINE_ctrl(e, num, l, NULL, NULL) > 0
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/engine/
eng_ctrl.c 125 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void))
181 ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, cmd, NULL, NULL)) < 0) {
203 || (num = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FROM_NAME,
224 if (ENGINE_ctrl(e, num, i, p, f) > 0)
241 || (num = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FROM_NAME,
264 flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num, NULL, NULL);
284 * We deliberately force the result of ENGINE_ctrl() to 0 or 1 rather
289 if (ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0)
302 if (ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0)
327 if (ENGINE_ctrl(e, num, l, NULL, NULL) > 0
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
engine.c 165 if (!ENGINE_ctrl(e, ENGINE_CTRL_HAS_CTRL_FUNCTION, 0, NULL, NULL) || ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE, 0, NULL, NULL)) <= 0)) {
176 if ((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
182 if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
187 if (ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
192 if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
198 if (ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
234 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE, num, NULL, NULL);
  /src/crypto/external/bsd/openssl/dist/apps/
engine.c 160 if (!ENGINE_ctrl(e, ENGINE_CTRL_HAS_CTRL_FUNCTION, 0, NULL, NULL) ||
161 ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
173 if ((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
178 if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
182 if (ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
186 if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
191 if (ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
227 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE, num, NULL, NULL);
  /src/crypto/external/bsd/openssl.old/dist/apps/
engine.c 151 if (!ENGINE_ctrl(e, ENGINE_CTRL_HAS_CTRL_FUNCTION, 0, NULL, NULL) ||
152 ((num = ENGINE_ctrl(e, ENGINE_CTRL_GET_FIRST_CMD_TYPE,
164 if ((flags = ENGINE_ctrl(e, ENGINE_CTRL_GET_CMD_FLAGS, num,
169 if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_LEN_FROM_CMD, num,
173 if (ENGINE_ctrl(e, ENGINE_CTRL_GET_NAME_FROM_CMD, num, name,
177 if ((len = ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_LEN_FROM_CMD, num,
182 if (ENGINE_ctrl(e, ENGINE_CTRL_GET_DESC_FROM_CMD, num, desc,
218 num = ENGINE_ctrl(e, ENGINE_CTRL_GET_NEXT_CMD_TYPE, num, NULL, NULL);
apps.c 1313 ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, bio_err, 0);
  /src/crypto/external/apache2/openssl/dist/apps/lib/
engine.c 61 (void)ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, bio_err, 0);
  /src/crypto/external/bsd/openssl/dist/apps/lib/
engine.c 61 (void)ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, bio_err, 0);
  /src/crypto/external/apache2/openssl/dist/crypto/ts/
ts_conf.c 191 ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
  /src/crypto/external/apache2/openssl/dist/include/openssl/
engine.h 72 * control commands on their own. Without this flag, ENGINE_ctrl() handles
81 * ENGINE_ctrl() commands are called in sequence as part of some stateful
105 * available to the ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl()
110 /* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */
114 * to ENGINE_ctrl)
172 * the ENGINE_ctrl() code handles this on the ENGINE's behalf using the
429 OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p,
437 * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl().
444 * This function works like ENGINE_ctrl() with the exception of taking a
466 * be used for calling ENGINE_ctrl() functions that return data, deal wit
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/ts/
ts_conf.c 179 ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
  /src/crypto/external/bsd/openssl/dist/include/openssl/
engine.h 72 * control commands on their own. Without this flag, ENGINE_ctrl() handles
81 * ENGINE_ctrl() commands are called in sequence as part of some stateful
105 * available to the ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl()
110 /* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */
114 * to ENGINE_ctrl)
172 * the ENGINE_ctrl() code handles this on the ENGINE's behalf using the
429 OSSL_DEPRECATEDIN_3_0 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p,
437 * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl().
444 * This function works like ENGINE_ctrl() with the exception of taking a
466 * be used for calling ENGINE_ctrl() functions that return data, deal wit
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/ts/
ts_conf.c 172 ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
engine.h 66 * control commands on their own. Without this flag, ENGINE_ctrl() handles
75 * ENGINE_ctrl() commands are called in sequence as part of some stateful
99 * available to the ENGINE_ctrl_cmd_string() function, only raw ENGINE_ctrl()
104 /* accepts a 'long' input value (3rd parameter to ENGINE_ctrl) */
108 * to ENGINE_ctrl)
166 * the ENGINE_ctrl() code handles this on the ENGINE's behalf using the
413 int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f) (void));
419 * ENGINE_ctrl_cmd_string(), only ENGINE_ctrl().
424 * This function works like ENGINE_ctrl() with the exception of taking a
443 * be used for calling ENGINE_ctrl() functions that return data, deal wit
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
tls_openssl.c 1348 if (!ENGINE_ctrl(conn->engine, ENGINE_CTRL_GET_CMD_FROM_NAME,

Completed in 45 milliseconds