Searched refs:pthread_getspecific (Results 1 – 12 of 12) sorted by relevance
53 return reinterpret_cast<intptr_t>(pthread_getspecific(JSLockCount)); in lockCount()119 return !!pthread_getspecific(JSLockCount); in currentThreadIsHoldingLock()
487 if (!m_currentThreadRegistrar || pthread_getspecific(m_currentThreadRegistrar)) in registerThread()
66 if (NULL == pthread_getspecific(ptkey)) { in InitializeForThread()
96 #define OSCL_TLS_GET_FUNC(key) pthread_getspecific(key)
287 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()
58 extern void *pthread_getspecific (pthread_key_t __key)640 pthread_getspecific(globalkey)) == NULL) { in xmlGetGlobalState()822 (pthread_getspecific != NULL) && in xmlInitThreads()
114 Data* data = static_cast<Data*>(pthread_getspecific(m_key)); in get()
113 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) macro2510 return static_cast<TCMalloc_ThreadCache*>(pthread_getspecific(heap_key)); in GetThreadHeap()
409 …JSGlueGlobalObject* globalObject = static_cast<JSGlueGlobalObject*>(pthread_getspecific(globalObje… in getThreadGlobalObject()
507 * wtf/FastMalloc.cpp: Change pthread_getspecific optimization to be done only543 pthread_getspecific being slow there. On Intel, removing the665 pthread_getspecific being slow there. On Intel, removing the16622 cache from a global variable instead of from pthread_getspecific, since the latter is slow.
2386 Fix the 64-bit build. pthread_getspecific works with pointer-sized values,2388 truncating the result of pthread_getspecific.