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

1 2 3 4

  /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
  /external/compiler-rt/test/lsan/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);
cleanup_in_tsd_destructor.cc 35 int res = pthread_key_create(&key, &key_destructor);
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/chromium_org/base/threading/
thread_local_posix.cc 18 int error = pthread_key_create(slot, NULL);
thread_local_storage_posix.cc 14 return !pthread_key_create(key,
  /external/chromium_org/mojo/public/cpp/utility/lib/
thread_local_posix.cc 14 if (pthread_key_create(slot, NULL) != 0) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
h_errno.c 16 pthread_key_create(&s_h_errno_key, NULL);
  /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/compiler-rt/test/asan/TestCases/Linux/
tsd_dtor_leak.cc 27 assert(0 == pthread_key_create(&tsd_key, Dtor));
  /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/angle/src/common/
tls.cpp 21 if ((pthread_key_create(&index, NULL)) != 0)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_posix_test.cc 53 ASSERT_EQ(0, pthread_key_create(&key, &destructor));
  /external/libcxxabi/src/
cxa_exception_storage.cpp 67 if ( 0 != pthread_key_create ( &key_, destruct_ ) )
  /bionic/benchmarks/
pthread_benchmark.cpp 38 pthread_key_create(&key, NULL);
  /bionic/libc/upstream-netbsd/lib/libc/resolv/
mtctxres.c 38 pthread_keycreate_ret = pthread_key_create(&key, __res_destroy_ctx);
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_thread.cpp 19 pthread_key_create(&s_thread_key, ThreadDataDestroy);
  /external/compiler-rt/lib/asan/
asan_posix.cc 63 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor));
  /external/deqp/framework/delibs/dethread/unix/
deThreadLocalUnix.c 52 if (pthread_key_create(&key, DE_NULL) != 0)

Completed in 463 milliseconds

1 2 3 4