Home
last modified time | relevance | path

Searched refs:defn (Results 1 – 6 of 6) sorted by relevance

/openssl-master/crypto/engine/
A Deng_ctrl.c27 static int int_ctrl_cmd_is_null(const ENGINE_CMD_DEFN *defn) in int_ctrl_cmd_is_null() argument
29 if ((defn->cmd_num == 0) || (defn->cmd_name == NULL)) in int_ctrl_cmd_is_null()
34 static int int_ctrl_cmd_by_name(const ENGINE_CMD_DEFN *defn, const char *s) in int_ctrl_cmd_by_name() argument
37 while (!int_ctrl_cmd_is_null(defn) && (strcmp(defn->cmd_name, s) != 0)) { in int_ctrl_cmd_by_name()
39 defn++; in int_ctrl_cmd_by_name()
41 if (int_ctrl_cmd_is_null(defn)) in int_ctrl_cmd_by_name()
47 static int int_ctrl_cmd_by_num(const ENGINE_CMD_DEFN *defn, unsigned int num) in int_ctrl_cmd_by_num() argument
54 while (!int_ctrl_cmd_is_null(defn) && (defn->cmd_num < num)) { in int_ctrl_cmd_by_num()
56 defn++; in int_ctrl_cmd_by_num()
58 if (defn->cmd_num == num) in int_ctrl_cmd_by_num()
/openssl-master/crypto/property/
A Ddefn_cache.c27 OSSL_PROPERTY_LIST *defn; member
46 ossl_property_free(elem->defn); in property_defn_free()
85 return r != NULL ? r->defn : NULL; in ossl_prop_defn_get()
116 p->defn = pl; in ossl_prop_defn_set()
A Dproperty_query.c17 const OSSL_PROPERTY_DEFINITION *defn = in property_idx_cmp() local
20 return key - defn->name_idx; in property_idx_cmp()
A Dproperty_parse.c315 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn) in ossl_parse_property() argument
320 const char *s = defn; in ossl_parse_property()
442 const OSSL_PROPERTY_LIST *defn) in ossl_property_match_count() argument
445 const OSSL_PROPERTY_DEFINITION *const d = defn->properties; in ossl_property_match_count()
454 if (j < defn->num_properties) { in ossl_property_match_count()
/openssl-master/include/internal/
A Dproperty.h30 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn);
36 const OSSL_PROPERTY_LIST *defn);
/openssl-master/test/
A Dproperty_test.c81 const char *defn; member
126 && TEST_ptr(p = ossl_parse_property(NULL, parser_tests[n].defn)) in test_property_parse()
276 const char *defn; member
301 && TEST_ptr(d = ossl_parse_property(NULL, definition_tests[n].defn)) in test_definition_compares()

Completed in 12 milliseconds