Home
last modified time | relevance | path

Searched refs:pcgbl (Results 1 – 1 of 1) sorted by relevance

/third_party/openssl/crypto/
Dprovider_conf.c31 PROVIDER_CONF_GLOBAL *pcgbl = OPENSSL_zalloc(sizeof(*pcgbl)); in prov_conf_ossl_ctx_new() local
33 if (pcgbl == NULL) in prov_conf_ossl_ctx_new()
36 pcgbl->lock = CRYPTO_THREAD_lock_new(); in prov_conf_ossl_ctx_new()
37 if (pcgbl->lock == NULL) { in prov_conf_ossl_ctx_new()
38 OPENSSL_free(pcgbl); in prov_conf_ossl_ctx_new()
42 return pcgbl; in prov_conf_ossl_ctx_new()
47 PROVIDER_CONF_GLOBAL *pcgbl = vpcgbl; in prov_conf_ossl_ctx_free() local
49 sk_OSSL_PROVIDER_pop_free(pcgbl->activated_providers, in prov_conf_ossl_ctx_free()
53 CRYPTO_THREAD_lock_free(pcgbl->lock); in prov_conf_ossl_ctx_free()
54 OPENSSL_free(pcgbl); in prov_conf_ossl_ctx_free()
[all …]