Home | History | Annotate | Download | only in workers

Lines Matching refs:WorkerThread

31 #include "WorkerThread.h"
51 unsigned WorkerThread::m_threadCount = 0;
53 unsigned WorkerThread::workerThreadCount()
80 WorkerThread::WorkerThread(const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
90 WorkerThread::~WorkerThread()
97 bool WorkerThread::start()
105 m_threadID = createThread(WorkerThread::workerThreadStart, this, "WebCore: Worker");
110 void* WorkerThread::workerThreadStart(void* thread)
112 return static_cast<WorkerThread*>(thread)->workerThread();
115 void* WorkerThread::workerThread()
132 // WorkerThread::~WorkerThread happens on a different thread where it was created.
151 void WorkerThread::runEventLoop()
206 void WorkerThread::stop()