Home
last modified time | relevance | path

Searched refs:m_currentThreadRegistrar (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DCollector.cpp146 , m_currentThreadRegistrar(0) in Heap()
202 if (m_currentThreadRegistrar) { in destroy()
203 int error = pthread_key_delete(m_currentThreadRegistrar); in destroy()
660 if (m_currentThreadRegistrar) in makeUsableFromMultipleThreads()
663 int error = pthread_key_create(&m_currentThreadRegistrar, unregisterThread); in makeUsableFromMultipleThreads()
672 if (!m_currentThreadRegistrar || pthread_getspecific(m_currentThreadRegistrar)) in registerThread()
675 pthread_setspecific(m_currentThreadRegistrar, this); in registerThread()
978 if (m_currentThreadRegistrar) { in markStackObjectsConservatively()
DCollector.h168 pthread_key_t m_currentThreadRegistrar; variable