HomeSort by relevance Sort by last modified time
    Searched refs:pthread_getspecific (Results 26 - 44 of 44) sorted by null

12

  /external/webkit/JavaScriptGlue/
JSUtils.cpp 409 JSGlueGlobalObject* globalObject = static_cast<JSGlueGlobalObject*>(pthread_getspecific(globalObjectKey));
  /external/v8/src/
platform-macos.cc 455 return pthread_getspecific(pthread_key);
platform-openbsd.cc 427 return pthread_getspecific(pthread_key);
platform-solaris.cc 402 return pthread_getspecific(pthread_key);
platform-freebsd.cc 454 return pthread_getspecific(pthread_key);
platform-linux.cc 548 return pthread_getspecific(pthread_key);
  /frameworks/base/libs/utils/
Looper.cpp 138 return (Looper*)pthread_getspecific(gTLSKey);
  /frameworks/base/opengl/libs/EGL/
egl.cpp 300 tls_t* tls = (tls_t*)pthread_getspecific(gEGLThreadLocalStorageKey);
310 tls_t* tls = (tls_t*)pthread_getspecific(gEGLThreadLocalStorageKey);
339 tls_t* tls = (tls_t*)pthread_getspecific(gEGLThreadLocalStorageKey);
362 tls_t* tls = (tls_t*)pthread_getspecific(gEGLThreadLocalStorageKey);
    [all...]
  /frameworks/base/libs/binder/
IPCThreadState.cpp 302 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(k);
327 IPCThreadState* st = (IPCThreadState*)pthread_getspecific(gTLS);
    [all...]
  /frameworks/base/include/private/opengles/
gl_context.h 595 return static_cast<ogles_context_t*>(pthread_getspecific(gGLKey));
  /external/stlport/src/
allocators.cpp 907 if (_S_key_initialized && (__result = (__state_type*) pthread_getspecific(_S_key)))
    [all...]
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 121 return !!pthread_getspecific(isForbiddenKey);
430 // Calling pthread_getspecific through a global function pointer is faster than a normal
435 static void* (*pthread_getspecific_function_pointer)(pthread_key_t) = pthread_getspecific;
436 #define pthread_getspecific(key) pthread_getspecific_function_pointer(key)
    [all...]
  /frameworks/base/core/jni/
android_util_Process.cpp 297 void* bgOk = pthread_getspecific(gBgKey);
  /ndk/sources/android/stlport/src/
allocators.cpp 907 if (_S_key_initialized && (__result = (__state_type*) pthread_getspecific(_S_key)))
    [all...]
  /dalvik/vm/
Thread.c 272 if (pthread_getspecific(gDvm.pthreadKeySelf) != NULL)
    [all...]
  /bionic/libc/bionic/
pthread.c 1735 void * pthread_getspecific(pthread_key_t key) function
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Collector.cpp 672 if (!m_currentThreadRegistrar || pthread_getspecific(m_currentThreadRegistrar))
    [all...]
  /frameworks/base/libs/rs/
rsScriptC_Lib.cpp 38 (Context::ScriptTLSStruct *)pthread_getspecific(Context::gThreadTLSKey); \
    [all...]
  /frameworks/base/opengl/libagl/
egl.cpp 85 GLint error = (GLint)pthread_getspecific(gEGLErrorKey);
    [all...]

Completed in 687 milliseconds

12