Symbol: pthread_once_t
crypto/libressl/crypto/conf/conf_sap.c
79
static pthread_once_t openssl_configured = PTHREAD_ONCE_INIT;
crypto/libressl/crypto/crypto_init.c
34
static pthread_once_t crypto_init_once = PTHREAD_ONCE_INIT;
crypto/libressl/crypto/engine/eng_all.c
82
static pthread_once_t once = PTHREAD_ONCE_INIT;
crypto/libressl/crypto/err/err.c
674
static pthread_once_t once = PTHREAD_ONCE_INIT;
crypto/libressl/crypto/err/err_all.c
177
static pthread_once_t loaded = PTHREAD_ONCE_INIT;
crypto/libressl/crypto/evp/c_all.c
248
static pthread_once_t add_all_ciphers_once = PTHREAD_ONCE_INIT;
crypto/libressl/crypto/evp/c_all.c
302
static pthread_once_t add_all_digests_once = PTHREAD_ONCE_INIT;
crypto/libressl/ssl/ssl_init.c
40
static pthread_once_t once = PTHREAD_ONCE_INIT;
crypto/libressl/tls/tls.c
60
static pthread_once_t once = PTHREAD_ONCE_INIT;
include/pthread.h
221
int pthread_once(pthread_once_t *, void (*) (void)) __nonnull(1);
lib/libc/gen/_once_stub.c
38
_libc_once(pthread_once_t *once_control, void (*init_routine)(void))
lib/libc/gen/_once_stub.c
58
_once(pthread_once_t *once_control, void (*init_routine)(void))
lib/libc/gen/_pthread_stubs.c
205
stub_once(pthread_once_t *o, void (*r)(void))
lib/libc/include/libc_private.h
143
int _once(pthread_once_t *, void (*)(void));
lib/libc/include/nss_tls.h
54
static pthread_once_t keyinit = PTHREAD_ONCE_INIT; \
lib/libc/include/reentrant.h
97
#define once_t pthread_once_t
lib/libc/locale/xlocale.c
132
static pthread_once_t once_control = PTHREAD_ONCE_INIT;
lib/libc/net/nss_compat.c
60
static pthread_once_t _term_once_##x = PTHREAD_ONCE_INIT
lib/libc/stdlib/dmalloc.c
307
static pthread_once_t thread_malloc_once = PTHREAD_ONCE_INIT;
lib/libc/stdlib/nmalloc.c
330
static pthread_once_t thread_mags_once = PTHREAD_ONCE_INIT;
lib/libc/stdtime/localtime.c
209
static pthread_once_t gmt_once = PTHREAD_ONCE_INIT;
lib/libc/stdtime/localtime.c
211
static pthread_once_t gmtime_once = PTHREAD_ONCE_INIT;
lib/libc/stdtime/localtime.c
214
static pthread_once_t localtime_once = PTHREAD_ONCE_INIT;
lib/libc/upmap/upmap.c
66
static pthread_once_t upmap_once = PTHREAD_ONCE_INIT;
lib/libthread_xu/thread/thr_once.c
51
pthread_once_t *once_control = arg;
lib/libthread_xu/thread/thr_once.c
60
_pthread_once(pthread_once_t *once_control, void (*init_routine) (void))
sys/libprop/prop_object_impl.h
390
static pthread_once_t x = PTHREAD_ONCE_INIT;
sys/libprop/prop_object_impl.h
429
static pthread_once_t x = PTHREAD_ONCE_INIT;
test/debug/crc32hw.c
214
static pthread_once_t crc32c_once_hw = PTHREAD_ONCE_INIT;
test/debug/crc32hw.c
46
static pthread_once_t crc32c_once_sw = PTHREAD_ONCE_INIT;