Home
last modified time | relevance | path

Searched refs:pthread_key_t (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/bionic/
Dpthread_key.cpp66 static inline bool IsValidUserKey(pthread_key_t key) { in IsValidUserKey()
93 for (pthread_key_t key = 0; key < TLS_SLOT_FIRST_USER_SLOT; ++key) { in ScopedTlsMapAccess()
104 int CreateKey(pthread_key_t* result, void (*key_destructor)(void*)) { in CreateKey()
118 void DeleteKey(pthread_key_t key) { in DeleteKey()
123 bool IsInUse(pthread_key_t key) { in IsInUse()
127 void SetInUse(pthread_key_t key, void (*key_destructor)(void*)) { in SetInUse()
196 int pthread_key_create(pthread_key_t* key, void (*key_destructor)(void*)) { in pthread_key_create()
205 int pthread_key_delete(pthread_key_t key) { in pthread_key_delete()
236 void* pthread_getspecific(pthread_key_t key) { in pthread_getspecific()
248 int pthread_setspecific(pthread_key_t key, const void* ptr) { in pthread_setspecific()
Dstubs.cpp46 static pthread_key_t stubs_key;
/bionic/libc/include/
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/private/
DThreadLocalBuffer.h43 static pthread_key_t __bionic_tls_ ## name ## _key; \
Dthread_private.h45 pthread_key_t _private_key;
/bionic/
DABI-bugs.txt11 Too few TLS slots mean we can't allocate 128 pthread_key_t instances,
/bionic/libc/include/sys/
Dtypes.h78 typedef .... pthread_key_t;
/bionic/tests/
Dpthread_test.cpp24 pthread_key_t key; in TEST()
34 std::vector<pthread_key_t> keys; in TEST()
36 pthread_key_t key; in TEST()
43 pthread_key_t key; in TEST()
/bionic/libc/netbsd/resolv/
Dres_state.c52 static pthread_key_t _res_key;
/bionic/libc/netbsd/net/
Dreentrant.h125 #define thread_key_t pthread_key_t