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

/bionic/libc/bionic/
H A Dpthread_key.cpp66 static inline bool IsValidUserKey(pthread_key_t key) {
93 for (pthread_key_t key = 0; key < TLS_SLOT_FIRST_USER_SLOT; ++key) {
104 int CreateKey(pthread_key_t* result, void (*key_destructor)(void*)) {
118 void DeleteKey(pthread_key_t key) {
123 bool IsInUse(pthread_key_t key) {
127 void SetInUse(pthread_key_t key, void (*key_destructor)(void*)) {
196 int pthread_key_create(pthread_key_t* key, void (*key_destructor)(void*)) {
201 // Deletes a pthread_key_t. note that the standard mandates that this does
205 int pthread_key_delete(pthread_key_t key) {
236 void* pthread_getspecific(pthread_key_t ke
[all...]
H A Dstubs.cpp46 static pthread_key_t stubs_key;
/bionic/libc/private/
H A DThreadLocalBuffer.h43 static pthread_key_t __bionic_tls_ ## name ## _key; \
H A Dthread_private.h45 pthread_key_t _private_key;
/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.h78 typedef .... pthread_key_t;
/bionic/tests/
H A Dpthread_test.cpp24 pthread_key_t key;
34 std::vector<pthread_key_t> keys;
36 pthread_key_t key;
43 pthread_key_t 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

Completed in 234 milliseconds