Symbol: ossl_crypto_mutex_new
crypto/openssl/crypto/thread/arch.c
25
if ((handle->lock = ossl_crypto_mutex_new()) == NULL)
crypto/openssl/crypto/thread/arch.c
27
if ((handle->statelock = ossl_crypto_mutex_new()) == NULL)
crypto/openssl/crypto/thread/arch/thread_win.c
307
if ((cv->int_m = ossl_crypto_mutex_new()) == NULL) {
crypto/openssl/crypto/thread/internal.c
134
t->lock = ossl_crypto_mutex_new();
crypto/openssl/crypto/threads_win.c
156
new->write_lock = ossl_crypto_mutex_new();
crypto/openssl/crypto/threads_win.c
159
new->alloc_lock = ossl_crypto_mutex_new();
crypto/openssl/crypto/threads_win.c
160
new->prior_lock = ossl_crypto_mutex_new();
crypto/openssl/include/internal/thread_arch.h
42
CRYPTO_MUTEX *ossl_crypto_mutex_new(void);
crypto/openssl/ssl/quic/quic_impl.c
4299
if ((ql->mutex = ossl_crypto_mutex_new()) == NULL) {
crypto/openssl/ssl/quic/quic_impl.c
4767
if ((newcache->mutex = ossl_crypto_mutex_new()) == NULL)
crypto/openssl/ssl/quic/quic_impl.c
5011
if ((qd->mutex = ossl_crypto_mutex_new()) == NULL) {
crypto/openssl/ssl/quic/quic_impl.c
608
if ((qc->mutex = ossl_crypto_mutex_new()) == NULL) {
crypto/openssl/ssl/quic/quic_tserver.c
94
if ((srv->mutex = ossl_crypto_mutex_new()) == NULL)
crypto/openssl/test/helpers/quictestlib.c
153
client_ready_mutex = ossl_crypto_mutex_new();
crypto/openssl/test/quic_multistream_test.c
1828
h->threads[i].m = ossl_crypto_mutex_new();
crypto/openssl/test/quic_multistream_test.c
828
if (!TEST_ptr(h->misc_m = ossl_crypto_mutex_new()))
crypto/openssl/test/quic_multistream_test.c
836
if (!TEST_ptr(h->server_thread.m = ossl_crypto_mutex_new()))
crypto/openssl/test/radix/quic_bindings.c
153
if (!TEST_ptr(rp->gm = ossl_crypto_mutex_new()))
crypto/openssl/test/radix/quic_bindings.c
505
if (!TEST_ptr(rt->m = ossl_crypto_mutex_new())) {