Searched refs:pthread_key_create (Results 51 - 75 of 78) sorted by relevance

1234

/external/llvm/lib/ExecutionEngine/IntelJITEvents/
H A Djitprofiling.c409 pthread_key_create(&threadLocalStorageHandle, NULL);
/external/opencv/cxcore/src/
H A Dcxerror.cpp424 int pthrerr = pthread_key_create( &g_TlsIndex, icvPthreadDestructor );
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_thread.h462 if (pthread_key_create(&tsd->key, NULL/*free*/) != 0) {
463 perror("pthread_key_create(): failed to allocate key for thread specific data");
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_thread.h462 if (pthread_key_create(&tsd->key, NULL/*free*/) != 0) {
463 perror("pthread_key_create(): failed to allocate key for thread specific data");
/external/chromium_org/third_party/webrtc/base/
H A Dthread.cc47 pthread_key_create(&key_, NULL);
/external/chromium_org/v8/src/base/platform/
H A Dplatform-posix.cc644 int result = pthread_key_create(&key, NULL);
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc1083 INTERCEPTOR(int, pthread_key_create, __sanitizer_pthread_key_t *key,
1085 if (msan_init_is_running) return REAL(pthread_key_create)(key, dtor);
1087 int res = REAL(pthread_key_create)(key, dtor);
1595 INTERCEPT_FUNCTION(pthread_key_create);
/external/fio/
H A Dgettime.c359 if (pthread_key_create(&tv_tls_key, kill_tv_tls_key))
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A DMakefile212 pthread_key_create.obj \
376 pthread_key_create.c \
H A Dpthread.h981 PTW32_DLLPORT int PTW32_CDECL pthread_key_create (pthread_key_t * key,
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1945 // pthread_key_create() requires DeleteThreadLocalValue() to have
2001 pthread_key_create(&key, &DeleteThreadLocalValue));
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h1282 // pthread_key_create() requires DeleteThreadLocalValue() to have
1366 pthread_key_create(&key, &DeleteThreadLocalValue));
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dheap-checker_unittest.cc816 CHECK_EQ(pthread_key_create(&key[i], KeyFree), 0);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dheap-checker_unittest.cc816 CHECK_EQ(pthread_key_create(&key[i], KeyFree), 0);
/external/compiler-rt/lib/asan/tests/
H A Dasan_test.cc168 pthread_key_create(&test_key, TSDDestructor);
/external/gtest/include/gtest/internal/
H A Dgtest-port.h1428 // pthread_key_create() requires DeleteThreadLocalValue() to have
1512 pthread_key_create(&key, &DeleteThreadLocalValue));
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h1292 // pthread_key_create() requires DeleteThreadLocalValue() to have
1376 pthread_key_create(&key, &DeleteThreadLocalValue));
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h1282 // pthread_key_create() requires DeleteThreadLocalValue() to have
1366 pthread_key_create(&key, &DeleteThreadLocalValue));
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
H A DSDL_dlcompat.c910 if (pthread_key_create(&dlerror_key, &dlerrorfree))
/external/stlport/src/
H A Dallocators.cpp913 if (pthread_key_create(&_S_key, _S_destructor)) {
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc48 extern "C" int pthread_key_create(unsigned *key, void (*destructor)(void* v));
2398 if (pthread_key_create(&g_thread_finalize_key, &thread_finalize)) {
/external/chromium_org/third_party/mesa/src/include/GL/
H A Dvms_x_fix.h1036 #define pthread_key_create PTHREAD_KEY_CREATE macro
/external/mesa3d/include/GL/
H A Dvms_x_fix.h1036 #define pthread_key_create PTHREAD_KEY_CREATE macro
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc2925 TEST(MemorySanitizer, pthread_key_create) {
2927 int res = pthread_key_create(&key, NULL);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/jni/
H A Dpeerconnection_jni.cc200 // Oracle's http://goo.gl/eHApYT) also use the pthread_key_create mechanism,
215 CHECK(!pthread_key_create(&g_jni_ptr, &ThreadDestructor))
216 << "pthread_key_create";

Completed in 2910 milliseconds

1234