Home | History | Annotate | Download | only in workers

Lines Matching defs:WorkerThread

31 #include "WorkerThread.h"
56 unsigned WorkerThread::m_threadCount = 0;
58 unsigned WorkerThread::workerThreadCount()
86 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
96 WorkerThread::~WorkerThread()
103 bool WorkerThread::start()
111 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
116 void* WorkerThread::workerThreadStart(void* thread)
118 return static_cast<WorkerThread*>(thread)->workerThread();
121 void* WorkerThread::workerThread()
138 // WorkerThread::~WorkerThread happens on a different thread where it was created.
160 void WorkerThread::runEventLoop()
224 void WorkerThread::stop()