Home
last modified time | relevance | path

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

/bionic/libc/private/
DThreadLocalBuffer.h48 pthread_key_create(&__bionic_tls_ ## name ## _key, __bionic_tls_ ## name ## _key_destroy); \
/bionic/libc/upstream-netbsd/lib/libc/resolv/
Dmtctxres.c38 pthread_keycreate_ret = pthread_key_create(&key, __res_destroy_ctx); in _mtctxres_init()
/bionic/benchmarks/
Dpthread_benchmark.cpp38 pthread_key_create(&key, NULL); in BM_pthread_getspecific()
/bionic/tests/
Dpthread_test.cpp33 TEST(pthread, pthread_key_create) { in TEST() argument
35 ASSERT_EQ(0, pthread_key_create(&key, NULL)); in TEST()
57 ASSERT_EQ(0, pthread_key_create(&key, NULL)) << i << " of " << sysconf_max; in TEST()
63 ASSERT_EQ(EAGAIN, pthread_key_create(&key, NULL)); in TEST()
77 ASSERT_EQ(0, pthread_key_create(&key, NULL)); in TEST()
90 ASSERT_EQ(0, pthread_key_create(&key, NULL)); in TEST()
117 ASSERT_EQ(0, pthread_key_create(&key, NULL)); in TEST()
/bionic/libc/bionic/
Dlocale.cpp62 pthread_key_create(&g_uselocale_key, NULL); in __bionic_tls_uselocale_key_init()
Dpthread_key.cpp196 int pthread_key_create(pthread_key_t* key, void (*key_destructor)(void*)) { in pthread_key_create() function
Dstubs.cpp130 pthread_key_create(&stubs_key, stubs_state_free); in __stubs_key_init()
Dmalloc_debug_check.cpp644 pthread_key_create(&g_debug_calls_disabled, NULL); in malloc_debug_initialize()
/bionic/libc/dns/resolv/
Dres_state.c111 pthread_key_create( &_res_key, _res_thread_free ); in _res_init_key()
/bionic/libc/include/
Dpthread.h195 int pthread_key_create(pthread_key_t*, void (*)(void*)) __nonnull((1));