Home
last modified time | relevance | path

Searched refs:pthread_key_create (Results 1 – 25 of 90) sorted by relevance

1234

/external/chromium_org/third_party/tcmalloc/vendor/src/
Dmaybe_threads.cc60 int pthread_key_create (pthread_key_t*, void (*)(void*))
76 if (pthread_key_create) { in perftools_pthread_key_create()
77 return pthread_key_create(key, destr_function); in perftools_pthread_key_create()
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dmaybe_threads.cc60 int pthread_key_create (pthread_key_t*, void (*)(void*))
76 if (pthread_key_create) { in perftools_pthread_key_create()
77 return pthread_key_create(key, destr_function); in perftools_pthread_key_create()
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Dptw32_processInitialize.c83 if ((pthread_key_create (&ptw32_selfThreadKey, NULL) != 0) || in ptw32_processInitialize()
84 (pthread_key_create (&ptw32_cleanupKey, NULL) != 0)) in ptw32_processInitialize()
Dpthread_key_create.c47 pthread_key_create (pthread_key_t * key, void (PTW32_CDECL *destructor) (void *)) in pthread_key_create() function
/external/compiler-rt/test/lsan/TestCases/
Duse_tls_pthread_specific_dynamic.cc21 res = pthread_key_create(&dummy_keys[i], NULL); in main()
25 res = pthread_key_create(&key, NULL); in main()
Duse_tls_pthread_specific_static.cc19 res = pthread_key_create(&key, NULL); in main()
Dcleanup_in_tsd_destructor.cc35 int res = pthread_key_create(&key, &key_destructor); in main()
Ddisabler_in_tsd_destructor.cc30 int res = pthread_key_create(&key, &key_destructor); in main()
/external/libselinux/src/
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/
Dselinux_internal.h98 #pragma weak pthread_key_create macro
116 if (pthread_key_create != NULL) \
117 pthread_key_create(KEY, DESTRUCTOR); \
/external/skia/src/ports/
DSkTLS_pthread.cpp16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor); in sk_tls_make_key()
/external/chromium_org/third_party/skia/src/ports/
DSkTLS_pthread.cpp16 (void)pthread_key_create(&gSkTLSKey, SkTLS::Destructor); in sk_tls_make_key()
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
Dh_errno.c16 pthread_key_create(&s_h_errno_key, NULL); in __h_errno_create()
/external/chromium_org/mojo/public/cpp/utility/lib/
Dthread_local_posix.cc14 if (pthread_key_create(slot, NULL) != 0) { in AllocateSlot()
/external/chromium_org/base/threading/
Dthread_local_storage_posix.cc14 return !pthread_key_create(key, in AllocTLS()
Dthread_local_posix.cc18 int error = pthread_key_create(slot, NULL); in AllocateSlot()
/external/compiler-rt/test/asan/TestCases/Linux/
Dtsd_dtor_leak.cc27 assert(0 == pthread_key_create(&tsd_key, Dtor)); in main()
/external/chromium_org/gpu/command_buffer/common/
Dthread_local.h29 pthread_key_create(&key, NULL); in ThreadLocalAlloc()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_posix_test.cc53 ASSERT_EQ(0, pthread_key_create(&key, &destructor)); in TEST()
/external/chromium_org/third_party/WebKit/Source/wtf/
DThreadSpecific.h113 int error = pthread_key_create(key, destructor); in threadSpecificKeyCreate()
138 int error = pthread_key_create(&m_key, destroy); in ThreadSpecific()
/external/chromium_org/third_party/angle/src/common/
Dtls.cpp21 if ((pthread_key_create(&index, NULL)) != 0) in CreateTLSIndex()
/external/libcxxabi/src/
Dcxa_exception_storage.cpp67 if ( 0 != pthread_key_create ( &key_, destruct_ ) ) in construct_()
/external/deqp/framework/delibs/dethread/unix/
DdeThreadLocalUnix.c52 if (pthread_key_create(&key, DE_NULL) != 0) in deThreadLocal_create()
/external/llvm/test/Linker/
D2011-08-22-ResolveAlias.ll31 @_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*)*)
/external/compiler-rt/lib/asan/
Dasan_posix.cc63 CHECK_EQ(0, pthread_key_create(&tsd_key, destructor)); in AsanTSDInit()

1234