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

1 2 3 4

  /bionic/libc/bionic/
malloc_debug_disable.h 49 pthread_setspecific(g_debug_calls_disabled, reinterpret_cast<const void*>(1));
54 pthread_setspecific(g_debug_calls_disabled, NULL);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
cleanup.c 89 pthread_setspecific (ptw32_cleanupKey, (void *) cleanup->prev);
146 pthread_setspecific (ptw32_cleanupKey, (void *) cleanup);
pthread_self.c 135 pthread_setspecific (ptw32_selfThreadKey, (void *) sp);
  /external/compiler-rt/test/lsan/TestCases/
disabler_in_tsd_destructor.cc 20 pthread_setspecific(key, 0);
24 int res = pthread_setspecific(key, (void*)1);
use_tls_pthread_specific_static.cc 23 res = pthread_setspecific(key, p);
cleanup_in_tsd_destructor.cc 29 int res = pthread_setspecific(key, (void*)1);
use_tls_pthread_specific_dynamic.cc 29 res = pthread_setspecific(key, p);
  /external/chromium_org/third_party/skia/src/ports/
SkTLS_pthread.cpp 29 (void)pthread_setspecific(gSkTLSKey, ptr);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_posix_test.cc 31 ASSERT_EQ(0, pthread_setspecific(key, reinterpret_cast<void *>(iter - 1)));
39 return reinterpret_cast<void*>(pthread_setspecific(key, arg));
  /external/libcxxabi/src/
cxa_exception_storage.cpp 62 if ( 0 != ::pthread_setspecific ( key_, NULL ) )
83 if ( 0 != pthread_setspecific ( key_, retVal ) )
84 abort_message("pthread_setspecific failure in __cxa_get_globals()");
  /external/chromium_org/base/threading/
thread_local_posix.cc 35 int error = pthread_setspecific(slot, value);
thread_local_storage_posix.cc 28 int ret = pthread_setspecific(key, value);
  /external/chromium_org/mojo/public/cpp/utility/lib/
thread_local_posix.cc 33 if (pthread_setspecific(slot, value) != 0) {
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
h_errno.c 26 pthread_setspecific(s_h_errno_key, h_errno_ptr);
  /external/chromium_org/third_party/tcmalloc/chromium/src/
maybe_threads.cc 64 int pthread_setspecific(pthread_key_t, const void*)
94 if (pthread_setspecific) {
95 return pthread_setspecific(key, val);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
maybe_threads.cc 64 int pthread_setspecific(pthread_key_t, const void*)
94 if (pthread_setspecific) {
95 return pthread_setspecific(key, val);
  /external/chromium_org/gpu/command_buffer/common/
thread_local.h 46 pthread_setspecific(key, value);
  /external/compiler-rt/test/asan/TestCases/Linux/
tsd_dtor_leak.cc 14 pthread_setspecific(tsd_key, malloc(10));
  /external/compiler-rt/lib/asan/
asan_posix.cc 73 pthread_setspecific(tsd_key, tsd);
80 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
  /external/libselinux/src/
selinux_internal.h 100 #pragma weak pthread_setspecific macro
128 if (pthread_setspecific != NULL) \
129 pthread_setspecific(KEY, VALUE); \
  /bionic/libc/private/
ThreadLocalBuffer.h 57 pthread_setspecific(__bionic_tls_ ## name ## _key, name ## _tls_buffer); \
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSpecific.h 127 pthread_setspecific(key, value);
154 pthread_setspecific(m_key, new Data(ptr, this));
232 pthread_setspecific(data->owner->m_key, ptr);
239 pthread_setspecific(data->owner->m_key, 0);
  /external/chromium_org/third_party/angle/src/common/
tls.cpp 57 return (pthread_setspecific(index, value) == 0);
  /external/compiler-rt/lib/msan/
msan_linux.cc 122 pthread_setspecific(tsd_key, tsd);
129 CHECK_EQ(0, pthread_setspecific(tsd_key, tsd));
  /bionic/libc/upstream-netbsd/lib/libc/resolv/
mtctxres.c 79 if ((ret = pthread_setspecific(key, mt)) != 0) {

Completed in 479 milliseconds

1 2 3 4