HomeSort by relevance Sort by last modified time
    Searched defs:WorkerThread (Results 1 - 9 of 9) sorted by null

  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/annotation/
WorkerThread.java 30 public @interface WorkerThread {
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/
WorkerThread.java 31 public @interface WorkerThread {
  /external/webkit/Source/WebCore/workers/
WorkerThread.cpp 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
    [all...]
WorkerThread.h 47 class WorkerThread : public RefCounted<WorkerThread> {
49 virtual ~WorkerThread();
68 WorkerThread(const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
79 // Static function executed as the core routine on the new thread. Passed a pointer to a WorkerThread object.
81 void* workerThread();
97 // Track the number of WorkerThread instances for use in layout tests.