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

/macosx-10.10/WebCore-7600.1.25/storage/
H A DStorageThread.cpp44 : m_threadID(0)
52 ASSERT(!m_threadID);
58 if (!m_threadID)
59 m_threadID = createThread(StorageThread::threadEntryPointCallback, this, "WebCore: LocalStorage");
61 return m_threadID;
82 ASSERT(!m_queue.killed() && m_threadID);
89 ASSERT(!m_queue.killed() && m_threadID);
92 if (!m_threadID)
96 waitForThreadCompletion(m_threadID);
98 m_threadID
[all...]
H A DStorageThread.h61 ThreadIdentifier m_threadID; member in class:WebCore::StorageThread
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFileThread.cpp41 : m_threadID(0)
54 if (m_threadID)
56 m_threadID = createThread(FileThread::fileThreadStart, this, "WebCore: File");
57 return m_threadID;
93 // Wait for FileThread::start() to complete to have m_threadID
105 LOG(FileAPI, "About to detach thread %i and clear the ref to FileThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
107 detachThread(m_threadID);
H A DFileThread.h92 ThreadIdentifier m_threadID; member in class:WebCore::FileThread
/macosx-10.10/WebCore-7600.1.25/Modules/webdatabase/
H A DDatabaseDetails.h47 , m_threadID(std::this_thread::get_id())
60 , m_threadID(std::this_thread::get_id())
72 std::thread::id threadID() const { return m_threadID; }
83 std::thread::id m_threadID; member in class:WebCore::DatabaseDetails
H A DDatabaseThread.cpp44 : m_threadID(0)
71 if (m_threadID)
74 m_threadID = createThread(DatabaseThread::databaseThreadStart, this, "WebCore: Database");
76 return m_threadID;
205 LOG(StorageAPI, "About to detach thread %i and clear the ref to DatabaseThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
219 detachThread(m_threadID);
232 ASSERT(currentThread() == m_threadID);
240 ASSERT(currentThread() == m_threadID);
H A DDatabaseThread.h66 ThreadIdentifier getThreadID() { return m_threadID; }
83 ThreadIdentifier m_threadID; member in class:WebCore::DatabaseThread
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DGCThread.cpp40 : m_threadID(0)
49 ASSERT(m_threadID);
50 return m_threadID;
55 ASSERT(!m_threadID);
56 m_threadID = threadID;
H A DGCThread.h55 ThreadIdentifier m_threadID; member in class:JSC::GCThread
/macosx-10.10/WTF-7600.1.24/wtf/
H A DParallelJobsGeneric.h55 : m_threadID(0)
75 ThreadIdentifier m_threadID; member in class:WTF::ParallelEnvironment::ThreadPrivate
H A DParallelJobsGeneric.cpp96 if (!m_threadID)
97 m_threadID = createThread(&ParallelEnvironment::ThreadPrivate::workerThread, this, "Parallel worker");
99 if (m_threadID)
103 return m_threadID;
129 while (sharedThread->m_threadID) {
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAsyncAudioDecoder.cpp42 m_threadID = createThread(AsyncAudioDecoder::threadEntry, this, "Audio Decoder");
50 waitForThreadCompletion(m_threadID);
51 m_threadID = 0;
78 // Wait for until we have m_threadID established before starting the run loop.
H A DAsyncAudioDecoder.h86 WTF::ThreadIdentifier m_threadID; member in class:WebCore::AsyncAudioDecoder
/macosx-10.10/WebCore-7600.1.25/workers/
H A DWorkerThread.h57 ThreadIdentifier threadID() const { return m_threadID; }
87 ThreadIdentifier m_threadID; member in class:WebCore::WorkerThread
H A DWorkerThread.cpp114 : m_threadID(0)
137 // Mutex protection is necessary to ensure that m_threadID is initialized when the thread starts.
140 if (m_threadID)
143 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
145 return m_threadID;
183 ThreadIdentifier threadID = m_threadID;

Completed in 191 milliseconds