Home
last modified time | relevance | path

Searched refs:ossl_parse_query (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dproperty_test.c160 && TEST_ptr(q = ossl_parse_query(NULL, parser_tests[n].query, 0)) in test_property_parse()
178 && TEST_ptr(p = ossl_parse_query(NULL, "wood=oak", 0)) /* undefined */ in test_property_query_value_create()
179 && TEST_ptr(q = ossl_parse_query(NULL, "wood=oak", 1)) /* creates */ in test_property_query_value_create()
180 && TEST_ptr(o = ossl_parse_query(NULL, "wood=oak", 0)) /* defined */ in test_property_query_value_create()
229 if (!TEST_ptr_null(p = ossl_parse_query(NULL, ps, 1))) in test_property_parse_error()
278 && TEST_ptr(q_global = ossl_parse_query(NULL, merge_tests[n].q_global, in test_property_merge()
280 && TEST_ptr(q_local = ossl_parse_query(NULL, merge_tests[n].q_local, 0)) in test_property_merge()
362 && TEST_ptr(q = ossl_parse_query(NULL, definition_tests[n].query, 0)) in test_definition_compares()
669 && !TEST_ptr(pl = ossl_parse_query(NULL, to_string_tests[i].in, 1))) in test_property_list_to_string()
/freebsd/crypto/openssl/include/internal/
H A Dproperty.h32 OSSL_PROPERTY_LIST *ossl_parse_query(OSSL_LIB_CTX *ctx, const char *s,
/freebsd/crypto/openssl/crypto/evp/
H A Devp_fetch.c514 if (propq != NULL && (pl = ossl_parse_query(libctx, propq, 1)) == NULL) { in evp_set_default_properties_int()
540 if ((pl1 = ossl_parse_query(libctx, propq, 1)) == NULL) { in evp_default_properties_merge()
/freebsd/crypto/openssl/crypto/property/
H A Dproperty.c660 p2 = pq = ossl_parse_query(store->ctx, prop_query, 0); in ossl_method_store_fetch()
H A Dproperty_parse.c404 OSSL_PROPERTY_LIST *ossl_parse_query(OSSL_LIB_CTX *ctx, const char *s, in ossl_parse_query() function