Lines Matching refs:impls
58 STACK_OF(IMPLEMENTATION) *impls;
205 sk_IMPLEMENTATION_pop_free(a->impls, &impl_free); in alg_cleanup()
303 || (alg->impls = sk_IMPLEMENTATION_new_null()) == NULL in ossl_method_store_add()
312 for (i = 0; i < sk_IMPLEMENTATION_num(alg->impls); i++) { in ossl_method_store_add()
313 const IMPLEMENTATION *tmpimpl = sk_IMPLEMENTATION_value(alg->impls, i); in ossl_method_store_add()
319 if (i == sk_IMPLEMENTATION_num(alg->impls) in ossl_method_store_add()
320 && sk_IMPLEMENTATION_push(alg->impls, impl)) in ossl_method_store_add()
357 for (i = 0; i < sk_IMPLEMENTATION_num(alg->impls); i++) { in ossl_method_store_remove()
358 IMPLEMENTATION *impl = sk_IMPLEMENTATION_value(alg->impls, i); in ossl_method_store_remove()
362 (void)sk_IMPLEMENTATION_delete(alg->impls, i); in ossl_method_store_remove()
386 int i, end = sk_IMPLEMENTATION_num(alg->impls); in alg_do_each()
389 IMPLEMENTATION *impl = sk_IMPLEMENTATION_value(alg->impls, i); in alg_do_each()
452 for (j = 0; j < sk_IMPLEMENTATION_num(alg->impls); j++) { in ossl_method_store_fetch()
453 if ((impl = sk_IMPLEMENTATION_value(alg->impls, j)) != NULL in ossl_method_store_fetch()
463 for (j = 0; j < sk_IMPLEMENTATION_num(alg->impls); j++) { in ossl_method_store_fetch()
464 if ((impl = sk_IMPLEMENTATION_value(alg->impls, j)) != NULL in ossl_method_store_fetch()
495 sk_IMPLEMENTATION_pop_free(alg->impls, &impl_free); in impl_cache_flush_alg()