Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/openssl/crypto/engine/
Deng_ctrl.c70 if ((e->cmd_defns == NULL) || int_ctrl_cmd_is_null(e->cmd_defns)) in int_ctrl_helper()
72 return e->cmd_defns->cmd_num; in int_ctrl_helper()
85 if ((e->cmd_defns == NULL) in int_ctrl_helper()
86 || ((idx = int_ctrl_cmd_by_name(e->cmd_defns, s)) < 0)) { in int_ctrl_helper()
90 return e->cmd_defns[idx].cmd_num; in int_ctrl_helper()
96 if ((e->cmd_defns == NULL) in int_ctrl_helper()
97 || ((idx = int_ctrl_cmd_by_num(e->cmd_defns, (unsigned int)i)) < 0)) { in int_ctrl_helper()
102 cdp = &e->cmd_defns[idx]; in int_ctrl_helper()
Deng_lib.c68 e->cmd_defns = NULL; in engine_set_all_null()
248 e->cmd_defns = defns; in ENGINE_set_cmd_defns()
289 return e->cmd_defns; in ENGINE_get_cmd_defns()
Deng_list.c358 dest->cmd_defns = src->cmd_defns; in engine_cpy()
Deng_local.h153 const ENGINE_CMD_DEFN *cmd_defns; member