/src/lib/libpthread/ |
tss.c | 73 if (pthread_setspecific(key, val) == 0)
|
pthread_specific.c | 51 __strong_alias(__libc_thr_setspecific,pthread_setspecific) 58 pthread_setspecific(pthread_key_t key, const void *value)
|
pthread.h | 151 int pthread_setspecific(pthread_key_t, const void *); 403 #define pthread_setspecific __libc_thr_setspecific macro
|
Makefile | 207 MLINKS+= pthread_getspecific.3 pthread_setspecific.3 322 # pthread_setspecific() and pthread_getspecific(), since the constness
|
pthread.c | 164 pthread_setspecific,
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_posix.cc | 103 pthread_setspecific(tsd_key, tsd); 110 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_posix_test.cc | 32 ASSERT_EQ(0, pthread_setspecific(key, reinterpret_cast<void *>(iter - 1))); 40 return reinterpret_cast<void*>(pthread_setspecific(key, arg));
|
sanitizer_allocator_testlib.cc | 66 pthread_setspecific(pkey, (void*)((uptr)v + 1)); 98 pthread_setspecific(pkey, (void*)1);
|
/src/lib/libc/resolv/ |
mtctxres.c | 79 if ((ret = pthread_setspecific(key, mt)) != 0) {
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_common_mac.cc | 51 pthread_setspecific(key, data); 67 pthread_setspecific(key, ptr);
|
lsan_interceptors.cc | 42 int pthread_setspecific(unsigned key, const void *v); 311 if (pthread_setspecific(g_thread_finalize_key, (void*)(iter - 1))) { 356 if (pthread_setspecific(g_thread_finalize_key,
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_posix.cc | 42 EXPECT_EQ(pthread_setspecific(k->key, k), 0); 50 EXPECT_EQ(pthread_setspecific(k->key, k), 0);
|
/src/tests/lib/libpthread/ |
t_stack.c | 220 pthread_setspecific(C->jmp_key, &j); 230 pthread_setspecific(C->jmp_key, NULL); 253 pthread_setspecific(C->jmp_key, &j); 263 pthread_setspecific(C->jmp_key, NULL);
|
/src/lib/librumpuser/ |
rumpuser_pth.c | 699 pthread_setspecific(curlwpkey, rl); 704 pthread_setspecific(curlwpkey, NULL); 732 pthread_setspecific(curlwpkey, l); 736 pthread_setspecific(curlwpkey, NULL);
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_linux.cc | 244 pthread_setspecific(tsd_key, (void *)t); 251 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
|
/src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
safestack.cc | 146 pthread_setspecific(thread_cleanup_key, (void *)1); 170 pthread_setspecific(thread_cleanup_key, NULL);
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_mac_test.cc | 191 pthread_setspecific(*(pthread_key_t*)test_key, mem);
|
asan_test.cc | 163 // FIXME: Use an equivalent of pthread_setspecific on Windows. 166 pthread_setspecific(*(pthread_key_t*)test_key, (void*)0xfeedface);
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
emutls.c | 141 pthread_setspecific(emutls_pthread_key, (void*)array);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/ |
sanitizer_wrappers.cc | 194 LLVM_SYMBOLIZER_INTERCEPTOR2(pthread_setspecific,
|
/src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
xray_basic_logging.cc | 133 pthread_setspecific(PThreadKey, &TLD);
|
xray_profiling.cc | 77 pthread_setspecific(ProfilingKey, &TLD);
|
xray_fdr_logging.cc | 137 pthread_setspecific(Key, &TLDStorage);
|
/src/lib/librefuse/ |
refuse.c | 143 pthread_setspecific(context_key, ctxt);
|
/src/tests/lib/libc/sys/ |
t_ptrace_threads_wait.h | 701 FORKEE_PTHREAD(pthread_setspecific(thread_concurrent_key,
|