Lines Matching defs:method
40 * If we have been told not to store the method "permanently", we
41 * ask for a temporary store, and store the method there.
107 void *method = NULL;
109 if ((method = data->mcm->construct(algo, provider, data->mcm_data))
114 * Note regarding putting the method in stores:
121 * of the passed method.
123 data->mcm->put(data->store, method, provider, algo->algorithm_names,
127 data->mcm->destruct(method, data->mcm_data);
134 void *method = NULL;
139 * We might be tempted to try to look into the method store without
140 * constructing to see if we can find our method there already.
163 method = mcm->get(cbdata.store, (const OSSL_PROVIDER **)provider_rw,
166 /* If no method was found yet, try the global store */
167 if (method == NULL)
168 method = mcm->get(NULL, (const OSSL_PROVIDER **)provider_rw, mcm_data);
170 return method;