Lines Matching refs:store
54 OSSL_METHOD_STORE *store = NULL; in test_property_string() local
63 && TEST_ptr(store = ossl_method_store_new(ctx)) in test_property_string()
104 ossl_method_store_free(store); in test_property_string()
152 OSSL_METHOD_STORE *store; in test_property_parse() local
156 if (TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_parse()
165 ossl_method_store_free(store); in test_property_parse()
171 OSSL_METHOD_STORE *store; in test_property_query_value_create() local
176 if (TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_query_value_create()
187 ossl_method_store_free(store); in test_property_query_value_create()
219 OSSL_METHOD_STORE *store; in test_property_parse_error() local
224 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_parse_error()
237 ossl_method_store_free(store); in test_property_parse_error()
269 OSSL_METHOD_STORE *store; in test_property_merge() local
274 if (TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_merge()
288 ossl_method_store_free(store); in test_property_merge()
294 OSSL_METHOD_STORE *store; in test_property_defn_cache() local
298 r = TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_defn_cache()
331 ossl_method_store_free(store); in test_property_defn_cache()
355 OSSL_METHOD_STORE *store; in test_definition_compares() local
359 r = TEST_ptr(store = ossl_method_store_new(NULL)) in test_definition_compares()
367 ossl_method_store_free(store); in test_definition_compares()
385 OSSL_METHOD_STORE *store; in test_register_deregister() local
388 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_register_deregister()
393 if (!TEST_true(ossl_method_store_add(store, &prov, impls[i].nid, in test_register_deregister()
406 if (!TEST_true(ossl_method_store_remove(store, nid, impl)) in test_register_deregister()
407 || !TEST_false(ossl_method_store_remove(store, nid, impl))) { in test_register_deregister()
413 if (TEST_false(ossl_method_store_remove(store, impls[0].nid, impls[0].impl))) in test_register_deregister()
416 ossl_method_store_free(store); in test_register_deregister()
457 OSSL_METHOD_STORE *store; in test_property() local
462 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_property()
467 if (!TEST_true(ossl_method_store_add(store, *impls[i].prov, in test_property()
482 if (!TEST_true(ossl_method_store_fetch(store, in test_property()
500 if (!TEST_true(ossl_method_store_fetch(store, in test_property()
511 if (!TEST_false(ossl_method_store_fetch(store, in test_property()
532 if (!TEST_true(ossl_method_store_fetch(store, in test_property()
543 if (!TEST_false(ossl_method_store_fetch(store, in test_property()
558 ossl_method_store_free(store); in test_property()
565 OSSL_METHOD_STORE *store; in test_query_cache_stochastic() local
573 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_query_cache_stochastic()
580 if (!TEST_true(ossl_method_store_add(store, &prov, i, buf, "abc", in test_query_cache_stochastic()
582 || !TEST_true(ossl_method_store_cache_set(store, &prov, i, in test_query_cache_stochastic()
585 || !TEST_true(ossl_method_store_cache_set(store, &prov, i, in test_query_cache_stochastic()
594 if (!ossl_method_store_cache_get(store, NULL, i, buf, &result) in test_query_cache_stochastic()
602 ossl_method_store_free(store); in test_query_cache_stochastic()