Home
last modified time | relevance | path

Searched refs:cmd_defns (Results 1 – 4 of 4) sorted by relevance

/external/openssl/crypto/engine/
Deng_ctrl.c111 if((e->cmd_defns == NULL) || int_ctrl_cmd_is_null(e->cmd_defns)) in int_ctrl_helper()
113 return e->cmd_defns->cmd_num; in int_ctrl_helper()
130 if((e->cmd_defns == NULL) || ((idx = int_ctrl_cmd_by_name( in int_ctrl_helper()
131 e->cmd_defns, s)) < 0)) in int_ctrl_helper()
137 return e->cmd_defns[idx].cmd_num; in int_ctrl_helper()
141 if((e->cmd_defns == NULL) || ((idx = int_ctrl_cmd_by_num(e->cmd_defns, in int_ctrl_helper()
153 if(int_ctrl_cmd_is_null(e->cmd_defns + idx)) in int_ctrl_helper()
157 return e->cmd_defns[idx].cmd_num; in int_ctrl_helper()
159 return strlen(e->cmd_defns[idx].cmd_name); in int_ctrl_helper()
161 return BIO_snprintf(s,strlen(e->cmd_defns[idx].cmd_name) + 1, in int_ctrl_helper()
[all …]
Deng_lib.c101 e->cmd_defns = NULL; in engine_set_all_null()
277 e->cmd_defns = defns; in ENGINE_set_cmd_defns()
318 return e->cmd_defns; in ENGINE_get_cmd_defns()
Deng_list.c345 dest->cmd_defns = src->cmd_defns; in engine_cpy()
Deng_int.h173 const ENGINE_CMD_DEFN *cmd_defns; member