/src/lib/libpthread/ |
pthread_specific.c | 58 pthread_setspecific(pthread_key_t key, const void *value) 76 pthread_getspecific(pthread_key_t key)
|
pthread.h | 149 int pthread_key_create(pthread_key_t *, void (*)(void *)); 150 int pthread_key_delete(pthread_key_t); 151 int pthread_setspecific(pthread_key_t, const void *); 152 void* pthread_getspecific(pthread_key_t); 396 int __libc_thr_keycreate(pthread_key_t *, void (*)(void *)); 397 int __libc_thr_setspecific(pthread_key_t, const void *); 398 void *__libc_thr_getspecific(pthread_key_t); 399 int __libc_thr_keydelete(pthread_key_t);
|
threads.h | 60 typedef pthread_key_t tss_t;
|
pthread_tsd.c | 131 pthread_key_create(pthread_key_t *key, void (*destructor)(void *)) 201 pthread__add_specific(pthread_t self, pthread_key_t key, const void *value) 221 pthread_key_delete(pthread_key_t key)
|
pthread_types.h | 88 typedef int pthread_key_t; typedef in typeref:typename:int
|
pthread_int.h | 307 int pthread__add_specific(pthread_t, pthread_key_t, const void *) PTHREAD_HIDE;
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/ |
tsan_posix.cc | 20 pthread_key_t key; 24 thread_key(pthread_key_t key, pthread_mutex_t *mtx, int val, int *cnt) 56 pthread_key_t key;
|
/src/lib/libc/resolv/ |
mtctxres.c | 15 static pthread_key_t key;
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
asan_posix.cc | 88 static pthread_key_t tsd_key;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_posix_test.cc | 25 static pthread_key_t key;
|
sanitizer_allocator_testlib.cc | 62 static pthread_key_t pkey;
|
/src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
asan_mac_test.cc | 191 pthread_setspecific(*(pthread_key_t*)test_key, mem); 198 pthread_key_t test_key;
|
asan_test.cc | 166 pthread_setspecific(*(pthread_key_t*)test_key, (void*)0xfeedface); 187 pthread_key_t test_key;
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/symbolizer/ |
sanitizer_wrappers.cc | 189 LLVM_SYMBOLIZER_INTERCEPTOR1(pthread_getspecific, void *(pthread_key_t)) 191 int(pthread_key_t *, void (*)(void *))) 195 int(pthread_key_t, const void *))
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
emutls.c | 101 static pthread_key_t emutls_pthread_key;
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_common_mac.cc | 43 static pthread_key_t key;
|
/src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
msan_linux.cc | 223 static pthread_key_t tsd_key;
|
/src/sys/external/bsd/compiler_rt/dist/lib/safestack/ |
safestack.cc | 121 static pthread_key_t thread_cleanup_key;
|
/src/lib/libc/include/ |
reentrant.h | 119 #define thread_key_t pthread_key_t
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_platform_limits_openbsd.cc | 136 CHECK_TYPE_SIZE(pthread_key_t);
|
sanitizer_platform_limits_solaris.cc | 195 CHECK_TYPE_SIZE(pthread_key_t);
|
/src/tests/lib/libpthread/ |
t_stack.c | 61 pthread_key_t jmp_key; /* jmp_ctx to return from SIGSEGV handler */
|
/src/lib/librumpuser/ |
rumpuser_pth.c | 637 static pthread_key_t curlwpkey;
|
/src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
xray_basic_logging.cc | 75 static pthread_key_t PThreadKey;
|
xray_profiling.cc | 48 static pthread_key_t ProfilingKey;
|