Symbol: pthread_key_t
crypto/heimdal/include/heim_threads.h
105
#define HEIMDAL_thread_key pthread_key_t
crypto/krb5/src/util/support/threads.c
188
static pthread_key_t key;
crypto/openssl/include/openssl/crypto.h
545
typedef pthread_key_t CRYPTO_THREAD_LOCAL;
include/pthread.h
224
void *pthread_getspecific(pthread_key_t);
include/pthread.h
227
int pthread_key_create(pthread_key_t *, void (*) (void *));
include/pthread.h
228
int pthread_key_delete(pthread_key_t);
include/pthread.h
289
int pthread_setspecific(pthread_key_t, const void *);
lib/libc/gen/_pthread_stubs.c
231
STUB_FUNC1(pthread_getspecific, PJT_GETSPECIFIC, void *, pthread_key_t)
lib/libc/gen/_pthread_stubs.c
233
STUB_FUNC1(pthread_key_delete, PJT_KEY_DELETE, int, pthread_key_t)
lib/libc/gen/_pthread_stubs.c
258
STUB_FUNC2(pthread_setspecific, PJT_SETSPECIFIC, int, pthread_key_t, void *)
lib/libc/include/nss_tls.h
40
static pthread_key_t name##_state_key; \
lib/libc/include/reentrant.h
92
#define thread_key_t pthread_key_t
lib/libc/locale/xlocale.c
110
static pthread_key_t locale_info_key;
lib/libc/net/nss_compat.c
52
static pthread_key_t _term_key_##x; \
lib/libc/resolv/mtctxres.c
16
static pthread_key_t key;
lib/libc/rpc/svc_nl.c
338
*(pthread_key_t *)v = sc->xidkey;
lib/libc/rpc/svc_nl.c
77
pthread_key_t xidkey;
lib/libthr/thread/thr_private.h
1080
int _thr_key_create(pthread_key_t *, void (*)(void *));
lib/libthr/thread/thr_private.h
1081
int _thr_key_delete(pthread_key_t);
lib/libthr/thread/thr_private.h
1082
int _thr_setspecific(pthread_key_t, const void *);
lib/libthr/thread/thr_private.h
1083
void *_thr_getspecific(pthread_key_t);
lib/libthr/thread/thr_spec.c
168
_thr_setspecific(pthread_key_t userkey, const void *value)
lib/libthr/thread/thr_spec.c
172
pthread_key_t key;
lib/libthr/thread/thr_spec.c
198
_thr_getspecific(pthread_key_t userkey)
lib/libthr/thread/thr_spec.c
202
pthread_key_t key;
lib/libthr/thread/thr_spec.c
57
_thr_key_create(pthread_key_t *key, void (*destructor)(void *))
lib/libthr/thread/thr_spec.c
85
_thr_key_delete(pthread_key_t userkey)
lib/libthread_db/thread_db.h
175
typedef pthread_key_t thread_key_t;
lib/nss_tacplus/nss_tacplus.c
43
static pthread_key_t tacplus_key;
usr.sbin/rpc.tlsservd/rpc.tlsservd.c
85
static pthread_key_t xidkey;