HomeSort by relevance Sort by last modified time
    Searched refs:pthread_setspecific (Results 276 - 300 of 316) sorted by null

<<111213

  /development/ndk/sources/android/libportable/arch-mips/
pthread.c 254 PTHREAD_WRAPPER(pthread_setspecific, (pthread_key_t key, const void *value), (key, value),
  /external/chromium_org/third_party/webrtc/base/
thread.cc 80 pthread_setspecific(key_, thread);
  /external/chromium_org/v8/src/base/platform/
platform-posix.cc 672 int result = pthread_setspecific(pthread_key, value);
  /external/fio/
gettime.c 339 if (pthread_setspecific(tv_tls_key, t))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/
Xthreads.h 230 # define xthread_set_specific(k,v) pthread_setspecific(k,v)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xthreads.h 230 # define xthread_set_specific(k,v) pthread_setspecific(k,v)
  /system/core/libutils/
Looper.cpp 127 pthread_setspecific(gTLSKey, looper.get());
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Makefile 214 pthread_setspecific.obj \
378 pthread_setspecific.c \
pthread.h 986 PTW32_DLLPORT int PTW32_CDECL pthread_setspecific (pthread_key_t key,
    [all...]
  /frameworks/native/libs/binder/
IPCThreadState.cpp 341 pthread_setspecific(gTLS, NULL);
689 pthread_setspecific(gTLS, this);
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuCore.cpp 138 int status = pthread_setspecific(gThreadTLSKey, &dc->mTlsStruct);
140 ALOGE("pthread_setspecific %i", status);
262 int status = pthread_setspecific(gThreadTLSKey, &mTlsStruct);
264 ALOGE("pthread_setspecific %i", status);
  /bionic/libc/bionic/
malloc_debug_check.cpp 675 pthread_setspecific(g_debug_calls_disabled, NULL);
  /frameworks/native/opengl/libagl/
context.h 593 pthread_setspecific(gGLKey, value);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
pthread.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
pthread.h     [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 49 extern "C" int pthread_setspecific(unsigned key, const void *v);
794 if (pthread_setspecific(g_thread_finalize_key, (void*)(iter - 1))) {
827 if (pthread_setspecific(g_thread_finalize_key,
    [all...]
  /art/runtime/
thread_list.cc     [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/clang/test/Analysis/
malloc.c 960 pthread_setspecific(key, buf); // no warning
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 143 // FIXME: Use an equivalent of pthread_setspecific on Windows.
146 pthread_setspecific(*(pthread_key_t*)test_key, (void*)0xfeedface);
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
SDL_dlcompat.c 941 if (pthread_setspecific(dlerror_key, tss))
943 fprintf(stderr,"dlcompat: pthread_setspecific failed\n");
    [all...]

Completed in 1042 milliseconds

<<111213