Lines Matching refs:pfunc
786 const OSSL_DISPATCH *pfunc; in ossl_rand_drbg_new() local
806 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_ENABLE_LOCKING)) != NULL) in ossl_rand_drbg_new()
807 drbg->parent_enable_locking = OSSL_FUNC_rand_enable_locking(pfunc); in ossl_rand_drbg_new()
808 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_LOCK)) != NULL) in ossl_rand_drbg_new()
809 drbg->parent_lock = OSSL_FUNC_rand_lock(pfunc); in ossl_rand_drbg_new()
810 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_UNLOCK)) != NULL) in ossl_rand_drbg_new()
811 drbg->parent_unlock = OSSL_FUNC_rand_unlock(pfunc); in ossl_rand_drbg_new()
812 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_CTX_PARAMS)) != NULL) in ossl_rand_drbg_new()
813 drbg->parent_get_ctx_params = OSSL_FUNC_rand_get_ctx_params(pfunc); in ossl_rand_drbg_new()
814 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_NONCE)) != NULL) in ossl_rand_drbg_new()
815 drbg->parent_nonce = OSSL_FUNC_rand_nonce(pfunc); in ossl_rand_drbg_new()
816 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_GET_SEED)) != NULL) in ossl_rand_drbg_new()
817 drbg->parent_get_seed = OSSL_FUNC_rand_get_seed(pfunc); in ossl_rand_drbg_new()
818 if ((pfunc = find_call(p_dispatch, OSSL_FUNC_RAND_CLEAR_SEED)) != NULL) in ossl_rand_drbg_new()
819 drbg->parent_clear_seed = OSSL_FUNC_rand_clear_seed(pfunc); in ossl_rand_drbg_new()