Searched refs:pthread_key_create (Results 1 - 25 of 78) sorted by relevance

1234

/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_processInitialize.c83 if ((pthread_key_create (&ptw32_selfThreadKey, NULL) != 0) ||
84 (pthread_key_create (&ptw32_cleanupKey, NULL) != 0))
H A Dpthread_key_create.c2 * pthread_key_create.c
47 pthread_key_create (pthread_key_t * key, void (PTW32_CDECL *destructor) (void *)) function
/external/compiler-rt/test/lsan/TestCases/
H A Duse_tls_pthread_specific_dynamic.cc21 res = pthread_key_create(&dummy_keys[i], NULL);
25 res = pthread_key_create(&key, NULL);
H A Duse_tls_pthread_specific_static.cc19 res = pthread_key_create(&key, NULL);
H A Dcleanup_in_tsd_destructor.cc35 int res = pthread_key_create(&key, &key_destructor);
H A Ddisabler_in_tsd_destructor.cc30 int res = pthread_key_create(&key, &key_destructor);
/external/chromium_org/third_party/skia/src/ports/
H A DSkTLS_pthread.cpp16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
/external/skia/src/ports/
H A DSkTLS_pthread.cpp16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor);
/external/chromium_org/base/threading/
H A Dthread_local_posix.cc18 int error = pthread_key_create(slot, NULL);
H A Dthread_local_storage_posix.cc14 return !pthread_key_create(key,
/external/chromium_org/mojo/public/cpp/utility/lib/
H A Dthread_local_posix.cc14 if (pthread_key_create(slot, NULL) != 0) {
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dh_errno.c16 pthread_key_create(&s_h_errno_key, NULL);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dmaybe_threads.cc60 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/
H A Dmaybe_threads.cc60 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/
H A Dthread_local.h29 pthread_key_create(&key, NULL);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dtsd_dtor_leak.cc27 assert(0 == pthread_key_create(&tsd_key, Dtor));
/external/libselinux/src/
H A Dselinux_internal.h98 #pragma weak pthread_key_create macro
116 if (pthread_key_create != NULL) \
117 pthread_key_create(KEY, DESTRUCTOR); \
/external/qemu/distrib/libselinux/src/
H A Dselinux_internal.h98 #pragma weak pthread_key_create macro
116 if (pthread_key_create != NULL) \
117 pthread_key_create(KEY, DESTRUCTOR); \
/external/chromium_org/third_party/angle/src/common/
H A Dtls.cpp21 if ((pthread_key_create(&index, NULL)) != 0)
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_posix_test.cc53 ASSERT_EQ(0, pthread_key_create(&key, &destructor));
/external/libcxxabi/src/
H A Dcxa_exception_storage.cpp67 if ( 0 != pthread_key_create ( &key_, destruct_ ) )
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_thread.cpp19 pthread_key_create(&s_thread_key, ThreadDataDestroy);
/external/compiler-rt/lib/asan/
H A Dasan_posix.cc63 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor));
/external/deqp/framework/delibs/dethread/unix/
H A DdeThreadLocalUnix.c52 if (pthread_key_create(&key, DE_NULL) != 0)
/external/libunwind/tests/
H A DLtest-nocalloc.c119 if (pthread_key_create (&key, NULL))

Completed in 407 milliseconds

1234