Symbol: pthread_key_t
lib/libc/include/reentrant.h
119
#define thread_key_t pthread_key_t
lib/libc/resolv/mtctxres.c
15
static pthread_key_t key;
lib/libc/time/localtime.c
217
static pthread_key_t tm_multi_key;
lib/libpthread/pthread.h
149
int pthread_key_create(pthread_key_t *, void (*)(void *));
lib/libpthread/pthread.h
150
int pthread_key_delete(pthread_key_t);
lib/libpthread/pthread.h
151
int pthread_setspecific(pthread_key_t, const void *);
lib/libpthread/pthread.h
152
void* pthread_getspecific(pthread_key_t);
lib/libpthread/pthread.h
434
int __libc_thr_keycreate(pthread_key_t *, void (*)(void *));
lib/libpthread/pthread.h
435
int __libc_thr_setspecific(pthread_key_t, const void *);
lib/libpthread/pthread.h
436
void *__libc_thr_getspecific(pthread_key_t);
lib/libpthread/pthread.h
437
int __libc_thr_keydelete(pthread_key_t);
lib/libpthread/pthread_int.h
308
int pthread__add_specific(pthread_t, pthread_key_t, const void *) PTHREAD_HIDE;
lib/libpthread/pthread_specific.c
58
pthread_setspecific(pthread_key_t key, const void *value)
lib/libpthread/pthread_specific.c
76
pthread_getspecific(pthread_key_t key)
lib/libpthread/pthread_tsd.c
131
pthread_key_create(pthread_key_t *key, void (*destructor)(void *))
lib/libpthread/pthread_tsd.c
201
pthread__add_specific(pthread_t self, pthread_key_t key, const void *value)
lib/libpthread/pthread_tsd.c
221
pthread_key_delete(pthread_key_t key)
lib/libpthread/threads.h
60
typedef pthread_key_t tss_t;
lib/librefuse/refuse.c
128
static pthread_key_t context_key;
lib/librumpuser/rumpuser_pth.c
637
static pthread_key_t curlwpkey;
tests/lib/libc/sys/t_ptrace_threads_wait.h
683
static pthread_key_t thread_concurrent_key;
tests/lib/libpthread/t_stack.c
61
pthread_key_t jmp_key; /* jmp_ctx to return from SIGSEGV handler */