Home
last modified time | relevance | path

Searched refs:pthread_setspecific (Results 1 – 25 of 48) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_platform_mac.cpp65 int res = pthread_setspecific(thread_state_key, thr); in ThreadStateDestructor()
74 res = pthread_setspecific(thread_state_key, main_thread_state); in InitializeThreadStateStorage()
99 int res = pthread_setspecific(thread_state_key, thr); in cur_thread()
106 int res = pthread_setspecific(thread_state_key, thr); in set_cur_thread()
123 int res = pthread_setspecific(thread_state_key, dead_thread_state); in cur_thread_finalize()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_posix.cpp43 pthread_setspecific(tsd_key, tsd); in TSDSet()
50 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd)); in PlatformTSDDtor()
/freebsd-14.2/lib/libc/locale/
H A Dxlocale.c121 pthread_setspecific(locale_info_key, (void*)42); in init_key()
123 pthread_setspecific(locale_info_key, 0); in init_key()
164 pthread_setspecific(locale_info_key, l); in set_thread_locale()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_thread.cpp118 pthread_setspecific(tsd_key, t); in SetCurrentThread()
125 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd)); in DFsanTSDDtor()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_posix.cpp131 pthread_setspecific(tsd_key, tsd); in AsanTSDSet()
138 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd)); in PlatformTSDDtor()
/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dtsd_generic.h40 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) in tsd_cleanup_wrapper()
55 if (pthread_setspecific(tsd_tsd, (void *)wrapper) != 0) { in tsd_wrapper_set()
H A Dtsd_tls.h54 if (pthread_setspecific(tsd_tsd, (void *)(&tsd_tls)) != 0) { in tsd_set()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dtsd_exclusive.h134 pthread_setspecific(PThreadKey, reinterpret_cast<void *>(Instance)), 0); in initThread()
168 if (LIKELY(pthread_setspecific(Instance->getTSDRegistry()->PThreadKey, in teardownThread()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_mac.cpp67 pthread_setspecific(key, data); in restore_tid_data()
83 pthread_setspecific(key, ptr); in get_tls_val()
H A Dlsan_interceptors.cpp44 int pthread_setspecific(unsigned key, const void *v);
335 if (pthread_setspecific(g_thread_finalize_key, (void*)(iter - 1))) { in thread_finalize()
425 if (pthread_setspecific(g_thread_finalize_key, in ThreadStartFunc()
/freebsd-14.2/lib/libstdthreads/
H A Dtss.c61 if (pthread_setspecific(key, val) != 0) in tss_set()
/freebsd-14.2/contrib/ntp/libntp/lib/isc/pthreads/include/isc/
H A Dthread.h55 #define isc_thread_key_setspecific pthread_setspecific
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c185 pthread_setspecific(threadLocalStorageHandle,(void*)threadStack); in iJIT_NotifyEvent()
437 pthread_setspecific(threadLocalStorageHandle, threadStack); in FinalizeThread()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp138 pthread_setspecific(thread_cleanup_key, (void *)1); in thread_start()
162 pthread_setspecific(thread_cleanup_key, NULL); in thread_cleanup_handler()
/freebsd-14.2/lib/libc/resolv/
H A Dmtctxres.c82 if ((ret = pthread_setspecific(key, mt)) != 0) { in __res_init_ctx()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_linux.cpp285 pthread_setspecific(tsd_key, (void *)t); in SetCurrentThread()
292 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd)); in MsanTSDDtor()
/freebsd-14.2/contrib/libcxxrt/
H A Dexception.cc40 #pragma weak pthread_setspecific macro
460 (0 == pthread_setspecific) || in init_key()
467 pthread_setspecific(eh_key, reinterpret_cast<void *>(0x42)); in init_key()
469 pthread_setspecific(eh_key, 0); in init_key()
486 pthread_setspecific(eh_key, info); in thread_info()
/freebsd-14.2/sys/contrib/openzfs/lib/libuutil/
H A Duu_misc.c97 (void) pthread_setspecific(uu_error_key, in uu_set_error()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_linux.cpp307 CHECK_EQ(0, pthread_setspecific(tsd_key, in HwasanTSDThreadInit()
314 CHECK_EQ(0, pthread_setspecific(tsd_key, (void *)(iterations - 1))); in HwasanTSDDtor()
/freebsd-14.2/crypto/openssl/crypto/
H A Dthreads_pthread.c175 if (pthread_setspecific(*key, val) != 0) in CRYPTO_THREAD_set_local()
/freebsd-14.2/crypto/heimdal/include/
H A Dheim_threads.h107 #define HEIMDAL_setspecific(k,s,r) do { r = pthread_setspecific(k,s); } while(0)
/freebsd-14.2/lib/libthr/thread/
H A Dthr_spec.c53 __weak_reference(_thr_setspecific, pthread_setspecific);
/freebsd-14.2/lib/libthr/
H A Dpthread.map110 pthread_setspecific;
/freebsd-14.2/lib/libc/include/
H A Dun-namespace.h177 #undef pthread_setspecific
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_wrappers.cpp187 LLVM_SYMBOLIZER_INTERCEPTOR2(pthread_setspecific,

12