Home
last modified time | relevance | path

Searched refs:pthread_getspecific (Results 1 – 22 of 22) 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.cpp672 if (!m_currentThreadRegistrar || pthread_getspecific(m_currentThreadRegistrar)) in registerThread()
/external/chromium/base/
Dthread_local_posix.cc27 return pthread_getspecific(slot); in GetValueFromSlot()
Dthread_local_storage_posix.cc36 return pthread_getspecific(key_); in Get()
/external/webkit/JavaScriptCore/wtf/
DThreadIdentifierDataPthreads.cpp53 …ntifierData* threadIdentifierData = static_cast<ThreadIdentifierData*>(pthread_getspecific(m_key)); in identifier()
DThreadSpecific.h150 Data* data = static_cast<Data*>(pthread_getspecific(m_key)); in get()
DFastMalloc.cpp121 return !!pthread_getspecific(isForbiddenKey); in isForbidden()
435 static void* (*pthread_getspecific_function_pointer)(pthread_key_t) = pthread_getspecific;
436 #define pthread_getspecific(key) pthread_getspecific_function_pointer(key) macro
2934 return static_cast<TCMalloc_ThreadCache*>(pthread_getspecific(heap_key)); in GetThreadHeap()
/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/bluetooth/glib/gthread/
Dgthread-posix.c290 return pthread_getspecific (*(pthread_key_t *) private_key); in g_private_get_posix_impl()
294 posix_check_cmd (pthread_getspecific (*(pthread_key_t *) private_key, in g_private_get_posix_impl()
DChangeLog783 to use for pthread_getspecific.
/external/libxml2/
Dthreads.c58 extern void *pthread_getspecific (pthread_key_t __key)
668 pthread_getspecific(globalkey)) == NULL) { in xmlGetGlobalState()
864 (pthread_getspecific != NULL) && in xmlInitThreads()
/external/libvpx/vp8/common/
Dthreading.h34 #define pthread_getspecific(ts_key) TlsGetValue(ts_key) macro
/external/webkit/JavaScriptGlue/
DJSUtils.cpp409 …JSGlueGlobalObject* globalObject = static_cast<JSGlueGlobalObject*>(pthread_getspecific(globalObje… in getThreadGlobalObject()
/external/v8/src/
Dplatform-openbsd.cc427 return pthread_getspecific(pthread_key); in GetThreadLocal()
Dplatform-solaris.cc402 return pthread_getspecific(pthread_key); in GetThreadLocal()
Dplatform-macos.cc455 return pthread_getspecific(pthread_key); in GetThreadLocal()
Dplatform-freebsd.cc454 return pthread_getspecific(pthread_key); in GetThreadLocal()
Dplatform-linux.cc548 return pthread_getspecific(pthread_key); in GetThreadLocal()
/external/stlport/src/
Dallocators.cpp907 if (_S_key_initialized && (__result = (__state_type*) pthread_getspecific(_S_key))) in _S_get_per_thread_state()
/external/bluetooth/glib/
DChangeLog.pre-1-292 Test, if pthread_getspecific is posix like or something different,
/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.