Searched refs:m_threadID (Results 1 - 14 of 14) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLParserThread.cpp40 : m_threadID(0)
52 if (m_threadID)
54 m_threadID = createThread(HTMLParserThread::threadStart, this, "WebCore: HTMLParser");
55 return m_threadID;
61 waitForThreadCompletion(m_threadID);
88 // Wait for HTMLParserThread::start() to complete to have m_threadID
H A DHTMLParserThread.h62 ThreadIdentifier threadId() const { return m_threadID; }
72 ThreadIdentifier m_threadID; member in class:WebCore::HTMLParserThread
/macosx-10.9.5/WebCore-7537.78.1/storage/
H A DStorageThread.cpp49 : m_threadID(0)
57 ASSERT(!m_threadID);
63 if (!m_threadID)
64 m_threadID = createThread(StorageThread::threadEntryPointCallback, this, "WebCore: LocalStorage");
66 return m_threadID;
87 ASSERT(!m_queue.killed() && m_threadID);
94 ASSERT(!m_queue.killed() && m_threadID);
97 if (!m_threadID)
101 waitForThreadCompletion(m_threadID);
103 m_threadID
[all...]
H A DStorageThread.h64 ThreadIdentifier m_threadID; member in class:WebCore::StorageThread
/macosx-10.9.5/WebCore-7537.78.1/fileapi/
H A DFileThread.cpp43 : m_threadID(0)
56 if (m_threadID)
58 m_threadID = createThread(FileThread::fileThreadStart, this, "WebCore: File");
59 return m_threadID;
95 // Wait for FileThread::start() to complete to have m_threadID
107 LOG(FileAPI, "About to detach thread %i and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
109 detachThread(m_threadID);
H A DFileThread.h78 ThreadIdentifier m_threadID; member in class:WebCore::FileThread
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DDatabaseThread.cpp44 : m_threadID(0)
68 if (m_threadID)
71 m_threadID = createThread(DatabaseThread::databaseThreadStart, this, "WebCore: Database");
73 return m_threadID;
118 LOG(StorageAPI, "About to detach thread %i and clear the ref to DatabaseThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
132 detachThread(m_threadID);
145 ASSERT(currentThread() == m_threadID);
153 ASSERT(currentThread() == m_threadID);
H A DDatabaseThread.h67 ThreadIdentifier getThreadID() { return m_threadID; }
79 ThreadIdentifier m_threadID; member in class:WebCore::DatabaseThread
/macosx-10.9.5/JavaScriptCore-7537.78.1/heap/
H A DGCThread.cpp39 : m_threadID(0)
48 ASSERT(m_threadID);
49 return m_threadID;
54 ASSERT(!m_threadID);
55 m_threadID = threadID;
H A DGCThread.h55 ThreadIdentifier m_threadID; member in class:JSC::GCThread
/macosx-10.9.5/WebCore-7537.78.1/Modules/webaudio/
H A DAsyncAudioDecoder.cpp44 m_threadID = createThread(AsyncAudioDecoder::threadEntry, this, "Audio Decoder");
52 waitForThreadCompletion(m_threadID);
53 m_threadID = 0;
80 // Wait for until we have m_threadID established before starting the run loop.
H A DAsyncAudioDecoder.h82 WTF::ThreadIdentifier m_threadID; member in class:WebCore::AsyncAudioDecoder
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorkerThread.h59 ThreadIdentifier threadID() const { return m_threadID; }
89 ThreadIdentifier m_threadID; member in class:WebCore::WorkerThread
H A DWorkerThread.cpp108 : m_threadID(0)
129 // Mutex protection is necessary to ensure that m_threadID is initialized when the thread starts.
132 if (m_threadID)
135 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
137 return m_threadID;
170 ThreadIdentifier threadID = m_threadID;

Completed in 131 milliseconds