Home
last modified time | relevance | path

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

/openssl/crypto/engine/
H 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/crypto/property/
H A Ddefn_cache.c28 OSSL_PROPERTY_LIST *defn; member
47 ossl_property_free(elem->defn); in property_defn_free()
79 if (r == NULL || !ossl_assert(r->defn != NULL)) in ossl_prop_defn_get()
81 return r->defn; in ossl_prop_defn_get()
115 *pl = p->defn; in ossl_prop_defn_set()
122 p->defn = *pl; in ossl_prop_defn_set()
H A Dproperty_query.c17 const OSSL_PROPERTY_DEFINITION *defn = in property_idx_cmp() local
20 return key - defn->name_idx; in property_idx_cmp()
H A Dproperty_parse.c345 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn) in ossl_parse_property() argument
350 const char *s = defn; in ossl_parse_property()
472 const OSSL_PROPERTY_LIST *defn) in ossl_property_match_count() argument
475 const OSSL_PROPERTY_DEFINITION *const d = defn->properties; in ossl_property_match_count()
484 if (j < defn->num_properties) { in ossl_property_match_count()
/openssl/include/internal/
H A Dproperty.h30 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn);
36 const OSSL_PROPERTY_LIST *defn);
/openssl/test/
H A Dproperty_test.c110 const char *defn; member
159 && TEST_ptr(p = ossl_parse_property(NULL, parser_tests[n].defn)) in test_property_parse()
336 const char *defn; member
361 && TEST_ptr(d = ossl_parse_property(NULL, definition_tests[n].defn)) in test_definition_compares()

Completed in 23 milliseconds