Home | History | Annotate | Download | only in workers

Lines Matching refs:WorkerThread

29 #include "core/workers/WorkerThread.h"
56 static HashSet<WorkerThread*>& workerThreads()
58 DEFINE_STATIC_LOCAL(HashSet<WorkerThread*>, threads, ());
62 unsigned WorkerThread::workerThreadCount()
68 WorkerThread::WorkerThread(WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData> startupData)
80 WorkerThread::~WorkerThread()
87 bool WorkerThread::start()
95 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
100 void WorkerThread::workerThreadStart(void* thread)
102 static_cast<WorkerThread*>(thread)->workerThread();
105 void WorkerThread::workerThread()
173 void WorkerThread::runEventLoop()
222 void WorkerThread::stop()
244 bool WorkerThread::isCurrentThread() const