/ndk/tests/device/issue38121/jni/ |
main.c | 12 pthread_key_create(&mykey, NULL);
|
/external/libselinux/src/ |
selinux_internal.h | 98 #pragma weak pthread_key_create macro 116 if (pthread_key_create != NULL) \ 117 pthread_key_create(KEY, DESTRUCTOR); \
|
/external/chromium_org/third_party/skia/src/ports/ |
SkTLS_pthread.cpp | 16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
|
/external/skia/src/ports/ |
SkTLS_pthread.cpp | 16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/ |
use_tls_pthread_specific_dynamic.cc | 21 res = pthread_key_create(&dummy_keys[i], NULL); 25 res = pthread_key_create(&key, NULL);
|
disabler_in_tsd_destructor.cc | 30 int res = pthread_key_create(&key, &key_destructor);
|
use_tls_pthread_specific_static.cc | 19 res = pthread_key_create(&key, NULL);
|
/external/chromium/base/threading/ |
thread_local_posix.cc | 17 int error = pthread_key_create(&slot, NULL);
|
thread_local_storage_posix.cc | 19 int error = pthread_key_create(&key_, destructor);
|
/external/chromium_org/base/threading/ |
thread_local_posix.cc | 16 int error = pthread_key_create(slot, NULL);
|
thread_local_storage_posix.cc | 19 int error = pthread_key_create(&key_, destructor);
|
/external/chromium_org/gpu/command_buffer/common/ |
thread_local.h | 29 pthread_key_create(&key, NULL);
|
/external/chromium_org/mojo/public/utility/ |
thread_local_posix.cc | 16 if (pthread_key_create(slot, NULL) != 0) {
|
/external/chromium_org/third_party/angle/src/compiler/ |
ossource_posix.cpp | 26 if ((pthread_key_create(&pPoolIndex, NULL)) != 0) {
|
/ndk/sources/android/support/src/locale/ |
uselocale.c | 35 pthread_key_create(&s_locale_key, NULL);
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
ptw32_processInitialize.c | 83 if ((pthread_key_create (&ptw32_selfThreadKey, NULL) != 0) || 84 (pthread_key_create (&ptw32_cleanupKey, NULL) != 0))
|
tsd.c | 41 #include "pthread_key_create.c"
|
/external/llvm/test/Linker/ |
2011-08-22-ResolveAlias.ll | 31 @_ZL26__gthrw_pthread_key_createPjPFvPvE = alias weak i32 (i32*, void (i8*)*)* @pthread_key_create 79 declare extern_weak i32 @pthread_key_create(i32*, void (i8*)*)
|
2011-08-22-ResolveAlias2.ll | 34 @_ZL26__gthrw_pthread_key_createPjPFvPvE = alias weak i32 (i32*, void (i8*)*)* @pthread_key_create 84 declare extern_weak i32 @pthread_key_create(i32*, void (i8*)*)
|
/external/valgrind/main/exp-sgcheck/tests/ |
filter_stderr | 32 -e "s/(pthread_key_create.c:[0-9]*)/(in \/...libpthread...)/" \
|
/system/core/libcutils/ |
threads.c | 36 if (pthread_key_create( &store->tls, destroy) != 0) {
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
maybe_threads.cc | 60 int pthread_key_create (pthread_key_t*, void (*)(void*)) 76 if (pthread_key_create) { 77 return pthread_key_create(key, destr_function);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
maybe_threads.cc | 60 int pthread_key_create (pthread_key_t*, void (*)(void*)) 76 if (pthread_key_create) { 77 return pthread_key_create(key, destr_function);
|
/bionic/libc/private/ |
ThreadLocalBuffer.h | 48 pthread_key_create(&__bionic_tls_ ## name ## _key, __bionic_tls_ ## name ## _key_destroy); \
|
/bionic/tests/ |
pthread_test.cpp | 24 TEST(pthread, pthread_key_create) { 26 ASSERT_EQ(0, pthread_key_create(&key, NULL)); 39 ASSERT_EQ(0, pthread_key_create(&key, NULL)) << i << " of " << sysconf(_SC_THREAD_KEYS_MAX); 45 ASSERT_EQ(EAGAIN, pthread_key_create(&key, NULL));
|