Lines Matching refs:method
68 void *method = NULL; in ossl_method_construct_this() local
70 if ((method = data->mcm->construct(algo, provider, data->mcm_data)) in ossl_method_construct_this()
87 data->mcm->put(NULL, method, provider, algo->algorithm_names, in ossl_method_construct_this()
99 data->mcm->put(data->store, method, provider, algo->algorithm_names, in ossl_method_construct_this()
104 data->mcm->destruct(method, data->mcm_data); in ossl_method_construct_this()
111 void *method = NULL; in ossl_method_construct() local
113 if ((method = mcm->get(NULL, (const OSSL_PROVIDER **)provider_rw, in ossl_method_construct()
130 method = mcm->get(cbdata.store, (const OSSL_PROVIDER **)provider_rw, in ossl_method_construct()
134 if (method == NULL) in ossl_method_construct()
135 method = mcm->get(NULL, (const OSSL_PROVIDER **)provider_rw, mcm_data); in ossl_method_construct()
138 return method; in ossl_method_construct()