HomeSort by relevance Sort by last modified time
    Searched refs:pthread_key_create (Results 1 - 25 of 256) sorted by null

1 2 3 4 5 6 7 8 91011

  /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))
pthread_key_create.c 2 * pthread_key_create.c
47 pthread_key_create (pthread_key_t * key, void (PTW32_CDECL *destructor) (void *)) function
  /ndk/tests/device/issue38121/jni/
main.c 12 pthread_key_create(&mykey, NULL);
  /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);
use_tls_pthread_specific_static.cc 19 res = pthread_key_create(&key, NULL);
disabler_in_tsd_destructor.cc 30 int res = pthread_key_create(&key, &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);
  /ndk/sources/android/support/src/locale/
uselocale.c 35 pthread_key_create(&s_locale_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 17 int error = pthread_key_create(&slot, NULL);
thread_local_storage_posix.cc 19 int error = pthread_key_create(&key_, destructor);
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ossource_posix.cpp 26 if ((pthread_key_create(&pPoolIndex, NULL)) != 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);
  /external/chromium_org/gpu/command_buffer/common/
thread_local.h 29 pthread_key_create(&key, 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); \
  /bionic/libc/private/
ThreadLocalBuffer.h 48 pthread_key_create(&__bionic_tls_ ## name ## _key, __bionic_tls_ ## name ## _key_destroy); \
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadIdentifierDataPthreads.cpp 60 if (pthread_key_create(&m_key, destruct))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
gthr-tpf.h 78 __gthrw(pthread_key_create)
112 return __gthrw_(pthread_key_create) (__key, __dtor);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
gthr-tpf.h 78 __gthrw(pthread_key_create)
112 return __gthrw_(pthread_key_create) (__key, __dtor);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
gthr-tpf.h 78 __gthrw(pthread_key_create)
112 return __gthrw_(pthread_key_create) (__key, __dtor);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
gthr-tpf.h 78 __gthrw(pthread_key_create)
112 return __gthrw_(pthread_key_create) (__key, __dtor);
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
gthr-tpf.h 78 __gthrw(pthread_key_create)
112 return __gthrw_(pthread_key_create) (__key, __dtor);

Completed in 1368 milliseconds

1 2 3 4 5 6 7 8 91011