Searched refs:defn (Results 1 – 6 of 6) sorted by relevance
27 static int int_ctrl_cmd_is_null(const ENGINE_CMD_DEFN *defn) in int_ctrl_cmd_is_null() argument29 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() argument37 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() argument54 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()
27 OSSL_PROPERTY_LIST *defn; member46 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()
17 const OSSL_PROPERTY_DEFINITION *defn = in property_idx_cmp() local20 return key - defn->name_idx; in property_idx_cmp()
315 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn) in ossl_parse_property() argument320 const char *s = defn; in ossl_parse_property()442 const OSSL_PROPERTY_LIST *defn) in ossl_property_match_count() argument445 const OSSL_PROPERTY_DEFINITION *const d = defn->properties; in ossl_property_match_count()454 if (j < defn->num_properties) { in ossl_property_match_count()
30 OSSL_PROPERTY_LIST *ossl_parse_property(OSSL_LIB_CTX *ctx, const char *defn);36 const OSSL_PROPERTY_LIST *defn);
81 const char *defn; member126 && TEST_ptr(p = ossl_parse_property(NULL, parser_tests[n].defn)) in test_property_parse()276 const char *defn; member301 && TEST_ptr(d = ossl_parse_property(NULL, definition_tests[n].defn)) in test_definition_compares()
Completed in 12 milliseconds