Searched refs:pthread_key_create (Results 26 - 41 of 41) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c408 pthread_key_create(&threadLocalStorageHandle, NULL);
/freebsd-13-stable/contrib/unbound/util/
H A Dlocks.h176 #define ub_thread_key_create(key, f) LOCKRET(pthread_key_create(key, f))
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Demutls.c118 if (pthread_key_create(&emutls_pthread_key, emutls_key_destructor) != 0)
/freebsd-13-stable/sys/contrib/openzfs/lib/libzpool/
H A Dtaskq.c365 VERIFY0(pthread_key_create(&taskq_tsd, NULL));
/freebsd-13-stable/contrib/libcxxrt/
H A Dexception.cc38 #pragma weak pthread_key_create macro
379 if ((0 == pthread_key_create) ||
386 pthread_key_create(&eh_key, thread_cleanup);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp1051 INTERCEPTOR(int, pthread_key_create, __sanitizer_pthread_key_t *key,
1053 if (msan_init_is_running) return REAL(pthread_key_create)(key, dtor);
1055 int res = REAL(pthread_key_create)(key, dtor);
1064 ALIAS(WRAPPER_NAME(pthread_key_create));
1698 INTERCEPT_FUNCTION(pthread_key_create);
/freebsd-13-stable/lib/libc/gen/
H A D_pthread_stubs.c229 STUB_FUNC2(pthread_key_create, PJT_KEY_CREATE, int, void *, void *)
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp320 CHECK_EQ(0, pthread_key_create(&tsd_key, HwasanTSDDtor));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_basic_logging.cpp385 pthread_key_create(&PThreadKey, TLDDestructor);
H A Dxray_profiling.cpp429 pthread_key_create(
H A Dxray_fdr_logging.cpp687 pthread_key_create(
/freebsd-13-stable/share/man/man3/
H A DMakefile401 pthread_key_create.3 \
/freebsd-13-stable/sys/contrib/openzfs/include/sys/
H A Dzfs_context.h352 #define tsd_create(kp, d) pthread_key_create((pthread_key_t *)kp, d)
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h2151 // pthread_key_create() requires DeleteThreadLocalValue() to have
2209 pthread_key_create(&key, &DeleteThreadLocalValue));
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dz_Linux_util.cpp1897 status = pthread_key_create(&__kmp_gtid_threadprivate_key,
1899 KMP_CHECK_SYSFAIL("pthread_key_create", status);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp86 extern "C" int pthread_key_create(unsigned *key, void (*destructor)(void* v));
2791 if (pthread_key_create(&interceptor_ctx()->finalize_key, &thread_finalize)) {

Completed in 278 milliseconds

12