Symbol: pthread_once
crypto/libressl/crypto/conf/conf_sap.c
124
if (pthread_once(&openssl_configured, OPENSSL_config_internal) != 0)
crypto/libressl/crypto/conf/conf_sap.c
144
if (pthread_once(&openssl_configured, OPENSSL_no_config_internal) != 0)
crypto/libressl/crypto/crypto_init.c
60
if (pthread_once(&crypto_init_once, OPENSSL_init_crypto_internal) != 0)
crypto/libressl/crypto/engine/eng_all.c
87
(void) pthread_once(&once, ENGINE_load_builtin_engines_internal);
crypto/libressl/crypto/err/err.c
682
(void) pthread_once(&once, ERR_load_ERR_strings_internal);
crypto/libressl/crypto/err/err_all.c
178
(void) pthread_once(&loaded, ERR_load_crypto_strings_internal);
crypto/libressl/crypto/evp/c_all.c
249
(void) pthread_once(&add_all_ciphers_once, OpenSSL_add_all_ciphers_internal);
crypto/libressl/crypto/evp/c_all.c
303
(void) pthread_once(&add_all_digests_once, OpenSSL_add_all_digests_internal);
crypto/libressl/ssl/ssl_init.c
47
if (pthread_once(&once, OPENSSL_init_ssl_internal) != 0)
crypto/libressl/tls/tls.c
62
if (pthread_once(&once, tls_do_init) != 0)
include/pthread.h
221
int pthread_once(pthread_once_t *, void (*) (void)) __nonnull(1);
lib/libc/gen/_pthread_stubs.c
143
WR(stub_once, pthread_once);
lib/libc/stdlib/dmalloc.c
443
pthread_once(&thread_malloc_once, _nmalloc_thr_init_once);
lib/libthread_xu/thread/thr_once.c
91
__strong_reference(_pthread_once, pthread_once);
sys/libprop/prop_object_impl.h
430
#define _PROP_ONCE_RUN(x,f) pthread_once(&(x),(void(*)(void))f)
test/debug/crc32hw.c
233
pthread_once(&crc32c_once_hw, crc32c_init_hw);
test/debug/crc32hw.c
84
pthread_once(&crc32c_once_sw, crc32c_init_sw);