Lines Matching full: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()
82 ossl_method_store_free(store); in test_property_string()
130 OSSL_METHOD_STORE *store; in test_property_parse() local
134 if (TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_parse()
143 ossl_method_store_free(store); in test_property_parse()
149 OSSL_METHOD_STORE *store; in test_property_query_value_create() local
154 if (TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_query_value_create()
165 ossl_method_store_free(store); in test_property_query_value_create()
197 OSSL_METHOD_STORE *store; in test_property_parse_error() local
202 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_parse_error()
215 ossl_method_store_free(store); in test_property_parse_error()
247 OSSL_METHOD_STORE *store; in test_property_merge() local
252 if (TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_merge()
266 ossl_method_store_free(store); in test_property_merge()
272 OSSL_METHOD_STORE *store; in test_property_defn_cache() local
276 r = TEST_ptr(store = ossl_method_store_new(NULL)) in test_property_defn_cache()
309 ossl_method_store_free(store); in test_property_defn_cache()
333 OSSL_METHOD_STORE *store; in test_definition_compares() local
337 r = TEST_ptr(store = ossl_method_store_new(NULL)) in test_definition_compares()
345 ossl_method_store_free(store); in test_definition_compares()
363 OSSL_METHOD_STORE *store; in test_register_deregister() local
366 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_register_deregister()
371 if (!TEST_true(ossl_method_store_add(store, &prov, impls[i].nid, in test_register_deregister()
384 if (!TEST_true(ossl_method_store_remove(store, nid, impl)) in test_register_deregister()
385 || !TEST_false(ossl_method_store_remove(store, nid, impl))) { in test_register_deregister()
391 if (TEST_false(ossl_method_store_remove(store, impls[0].nid, impls[0].impl))) in test_register_deregister()
394 ossl_method_store_free(store); in test_register_deregister()
435 OSSL_METHOD_STORE *store; in test_property() local
440 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_property()
445 if (!TEST_true(ossl_method_store_add(store, *impls[i].prov, in test_property()
460 if (!TEST_true(ossl_method_store_fetch(store, in test_property()
478 if (!TEST_true(ossl_method_store_fetch(store, in test_property()
489 if (!TEST_false(ossl_method_store_fetch(store, in test_property()
510 if (!TEST_true(ossl_method_store_fetch(store, in test_property()
521 if (!TEST_false(ossl_method_store_fetch(store, in test_property()
536 ossl_method_store_free(store); in test_property()
543 OSSL_METHOD_STORE *store; in test_query_cache_stochastic() local
551 if (!TEST_ptr(store = ossl_method_store_new(NULL)) in test_query_cache_stochastic()
558 if (!TEST_true(ossl_method_store_add(store, &prov, i, buf, "abc", in test_query_cache_stochastic()
560 || !TEST_true(ossl_method_store_cache_set(store, &prov, i, in test_query_cache_stochastic()
563 || !TEST_true(ossl_method_store_cache_set(store, &prov, i, in test_query_cache_stochastic()
572 if (!ossl_method_store_cache_get(store, NULL, i, buf, &result) in test_query_cache_stochastic()
580 ossl_method_store_free(store); in test_query_cache_stochastic()