Home
last modified time | relevance | path

Searched refs:pthread_getspecific (Results 1 – 12 of 12) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DJSLock.cpp53 return reinterpret_cast<intptr_t>(pthread_getspecific(JSLockCount)); in lockCount()
119 return !!pthread_getspecific(JSLockCount); in currentThreadIsHoldingLock()
DCollector.cpp487 if (!m_currentThreadRegistrar || pthread_getspecific(m_currentThreadRegistrar)) in registerThread()
/external/opencore/android/
Dthread_init.cpp66 if (NULL == pthread_getspecific(ptkey)) { in InitializeForThread()
/external/opencore/oscl/oscl/config/shared/
Dosclconfig_unix_common.h96 #define OSCL_TLS_GET_FUNC(key) pthread_getspecific(key)
/external/opencore/oscl/oscl/config/android/
Dosclconfig_unix_android.h96 #define OSCL_TLS_GET_FUNC(key) pthread_getspecific(key)
/external/qemu/distrib/sdl-1.2.12/src/loadso/macosx/
DSDL_dlcompat.c287 tss = pthread_getspecific(dlerror_key); in error()
917 tss = pthread_getspecific(dlerror_key); in resetdlerror()
935 tss = pthread_getspecific(dlerror_key); in dolock()
958 tss = pthread_getspecific(dlerror_key); in dounlock()
1178 tss = pthread_getspecific(dlerror_key); in SDL_OSX_dlerror()
/external/libxml2/
Dthreads.c58 extern void *pthread_getspecific (pthread_key_t __key)
640 pthread_getspecific(globalkey)) == NULL) { in xmlGetGlobalState()
822 (pthread_getspecific != NULL) && in xmlInitThreads()
/external/webkit/JavaScriptCore/wtf/
DThreadSpecific.h114 Data* data = static_cast<Data*>(pthread_getspecific(m_key)); in get()
DFastMalloc.cpp113 return !!pthread_getspecific(isForbiddenKey); in isForbidden()
296 static void* (*pthread_getspecific_function_pointer)(pthread_key_t) = pthread_getspecific;
297 #define pthread_getspecific(key) pthread_getspecific_function_pointer(key) macro
2510 return static_cast<TCMalloc_ThreadCache*>(pthread_getspecific(heap_key)); in GetThreadHeap()
/external/webkit/JavaScriptGlue/
DJSUtils.cpp409 …JSGlueGlobalObject* globalObject = static_cast<JSGlueGlobalObject*>(pthread_getspecific(globalObje… in getThreadGlobalObject()
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-14507 * wtf/FastMalloc.cpp: Change pthread_getspecific optimization to be done only
543 pthread_getspecific being slow there. On Intel, removing the
665 pthread_getspecific being slow there. On Intel, removing the
16622 cache from a global variable instead of from pthread_getspecific, since the latter is slow.
DChangeLog-2008-08-102386 Fix the 64-bit build. pthread_getspecific works with pointer-sized values,
2388 truncating the result of pthread_getspecific.