Searched refs:pthread_key_t (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/include/
H A Dpthread.h84 typedef int pthread_key_t; typedef
261 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *));
262 int pthread_key_delete (pthread_key_t);
263 int pthread_setspecific(pthread_key_t key, const void *value);
264 void *pthread_getspecific(pthread_key_t key);
/bionic/libc/include/sys/
H A Dtypes.h80 typedef .... pthread_key_t;
/bionic/libc/private/
H A Dthread_private.h45 pthread_key_t _private_key;
/bionic/libc/netbsd/resolv/
H A Dres_state.c52 static pthread_key_t _res_key;
/bionic/libc/netbsd/net/
H A Dreentrant.h125 #define thread_key_t pthread_key_t
/bionic/libc/bionic/
H A Dpthread.c1911 int pthread_key_create(pthread_key_t *key, void (*destructor_function)(void *))
1926 /* This deletes a pthread_key_t. note that the standard mandates that this does
1935 int pthread_key_delete(pthread_key_t key)
1979 int pthread_setspecific(pthread_key_t key, const void *ptr)
1996 void * pthread_getspecific(pthread_key_t key)
H A Dstubs.c116 static pthread_key_t the_key;

Completed in 126 milliseconds