Lines Matching refs:pfunc
191 const OSSL_DISPATCH *pfunc; in crng_test_new() local
202 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_ENABLE_LOCKING)) != NULL) in crng_test_new()
203 crngt->parent_enable_locking = OSSL_FUNC_rand_enable_locking(pfunc); in crng_test_new()
204 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_LOCK)) != NULL) in crng_test_new()
205 crngt->parent_lock = OSSL_FUNC_rand_lock(pfunc); in crng_test_new()
206 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_UNLOCK)) != NULL) in crng_test_new()
207 crngt->parent_unlock = OSSL_FUNC_rand_unlock(pfunc); in crng_test_new()
208 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GETTABLE_CTX_PARAMS)) != NULL) in crng_test_new()
209 crngt->parent_gettable_ctx_params = OSSL_FUNC_rand_gettable_ctx_params(pfunc); in crng_test_new()
210 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_CTX_PARAMS)) != NULL) in crng_test_new()
211 crngt->parent_get_ctx_params = OSSL_FUNC_rand_get_ctx_params(pfunc); in crng_test_new()
212 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_SEED)) != NULL) in crng_test_new()
213 crngt->parent_get_seed = OSSL_FUNC_rand_get_seed(pfunc); in crng_test_new()
214 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_CLEAR_SEED)) != NULL) in crng_test_new()
215 crngt->parent_clear_seed = OSSL_FUNC_rand_clear_seed(pfunc); in crng_test_new()