Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_key.cpp62 static_assert(sizeof(pthread_key_t) == sizeof(int) && static_cast<pthread_key_t>(-1) < 0,
65 static inline bool KeyInValidRange(pthread_key_t key) { in KeyInValidRange()
118 int pthread_key_create(pthread_key_t* key, void (*key_destructor)(void*)) { in pthread_key_create()
136 int pthread_key_delete(pthread_key_t key) { in pthread_key_delete()
151 void* pthread_getspecific(pthread_key_t key) { in pthread_getspecific()
169 int pthread_setspecific(pthread_key_t key, const void* ptr) { in pthread_setspecific()
Dmalloc_debug_disable.h39 extern pthread_key_t g_debug_calls_disabled;
Dlocale.cpp161 static pthread_key_t g_uselocale_key;
Dmalloc_debug_check.cpp638 pthread_key_t g_debug_calls_disabled;
/bionic/libc/include/
Dpthread.h93 typedef int pthread_key_t; typedef
161 void* pthread_getspecific(pthread_key_t);
167 int pthread_key_create(pthread_key_t*, void (*)(void*)) __nonnull((1));
168 int pthread_key_delete(pthread_key_t);
217 int pthread_setspecific(pthread_key_t, const void*);
/bionic/benchmarks/
Dpthread_benchmark.cpp38 pthread_key_t key; in Run()
53 pthread_key_t key; in Run()
212 pthread_key_t key; in Run()
225 pthread_key_t key; in Run()
/bionic/libc/private/
DThreadLocalBuffer.h58 pthread_key_t key_;
Dthread_private.h26 pthread_key_t _private_key;
/bionic/libc/upstream-netbsd/lib/libc/resolv/
Dmtctxres.c15 static pthread_key_t key;
/bionic/libc/include/sys/
Dtypes.h110 typedef .... pthread_key_t;
/bionic/tests/
Dpthread_test.cpp47 pthread_key_t key; in TEST()
68 std::vector<pthread_key_t> keys; in TEST()
77 pthread_key_t key; in TEST()
86 pthread_key_t key = keys.back(); in TEST()
93 std::vector<pthread_key_t> keys; in TEST()
99 pthread_key_t key; in TEST()
121 pthread_key_t key; in TEST()
134 pthread_key_t key; in TEST()
158 return pthread_getspecific(*reinterpret_cast<pthread_key_t*>(key)); in DirtyKeyFn()
162 pthread_key_t key; in TEST()
[all …]
/bionic/libc/dns/resolv/
Dres_state.c106 static pthread_key_t _res_key;