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

1 2 3 4 5 6 7 8

  /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.c 35 int res = pthread_key_create(&key, &key_destructor);
disabler_in_tsd_destructor.c 31 int res = pthread_key_create(&key, &key_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);
  /bionic/libc/malloc_debug/
debug_disable.cpp 46 int error = pthread_key_create(&g_disable_key, nullptr);
48 error_log("pthread_key_create failed: %s", strerror(error));
  /bionic/libc/private/
ThreadLocalBuffer.h 43 pthread_key_create(&key_, free);
  /external/libchrome/base/threading/
thread_local_posix.cc 19 int error = pthread_key_create(slot, NULL);
thread_local_storage_posix.cc 14 return !pthread_key_create(key,
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_android_arm.c 22 // It finds the first available slot using pthread_key_create and uses
30 err = pthread_key_create(&k, nil);
32 fatalf("pthread_key_create failed: %d", err);
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_android_arm.c 22 // It finds the first available slot using pthread_key_create and uses
30 err = pthread_key_create(&k, nil);
32 fatalf("pthread_key_create failed: %d", err);
  /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/benchmarks/
pthread_benchmark.cpp 33 pthread_key_create(&key, NULL);
45 pthread_key_create(&key, NULL);
174 pthread_key_create(&key, NULL);
187 pthread_key_create(&key, NULL);
  /external/compiler-rt/test/asan/TestCases/Posix/
tsd_dtor_leak.cc 27 assert(0 == pthread_key_create(&tsd_key, Dtor));
  /external/libcxxabi/src/
cxa_exception_storage.cpp 67 if ( 0 != pthread_key_create ( &key_, destruct_ ) )
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_exception_storage.cpp 67 if ( 0 != pthread_key_create ( &key_, destruct_ ) )
  /external/selinux/libselinux/src/
selinux_internal.h 113 #pragma weak pthread_key_create macro
130 (pthread_key_create != NULL ? pthread_key_create(KEY, DESTRUCTOR) : -1)
  /bionic/libc/upstream-netbsd/lib/libc/resolv/
mtctxres.c 38 pthread_keycreate_ret = pthread_key_create(&key, __res_destroy_ctx);
  /build/kati/
thread_local.h 60 if (pthread_key_create(key, ThreadLocalDestructor<Type>))
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_posix_test.cc 54 ASSERT_EQ(0, pthread_key_create(&key, &destructor));
  /external/deqp/framework/delibs/dethread/unix/
deThreadLocalUnix.c 52 if (pthread_key_create(&key, DE_NULL) != 0)
  /external/libunwind/tests/
Ltest-nocalloc.c 119 if (pthread_key_create (&key, NULL))
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
mutex.h 111 pthread_key_create(&key_, &ThreadLocalStorage::Delete);
  /system/core/libcutils/
threads.c 63 if (pthread_key_create( &store->tls, destroy) != 0) {

Completed in 588 milliseconds

1 2 3 4 5 6 7 8