HomeSort by relevance Sort by last modified time
    Searched refs:WorkerThread (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/v8/src/libplatform/
worker-thread.cc 13 WorkerThread::WorkerThread(TaskQueue* queue)
14 : Thread(Options("V8 WorkerThread")), queue_(queue) {
19 WorkerThread::~WorkerThread() {
24 void WorkerThread::Run() {
worker-thread.h 19 class WorkerThread : public base::Thread {
21 explicit WorkerThread(TaskQueue* queue);
22 virtual ~WorkerThread();
32 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
default-platform.h 22 class WorkerThread;
47 std::vector<WorkerThread*> thread_pool_;
worker-thread-unittest.cc 40 WorkerThread thread1(&queue);
41 WorkerThread thread2(&queue);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerInspectorProxy.h 14 class WorkerThread;
30 void workerThreadCreated(ExecutionContext*, WorkerThread*, const KURL&);
43 WorkerThread* m_workerThread;
WorkerThread.cpp 29 #include "core/workers/WorkerThread.h"
76 static HashSet<WorkerThread*>& workerThreads()
78 DEFINE_STATIC_LOCAL(HashSet<WorkerThread*>, threads, ());
82 unsigned WorkerThread::workerThreadCount()
90 explicit WorkerSharedTimer(WorkerThread* workerThread)
91 : m_workerThread(workerThread)
137 WorkerThread* m_workerThread;
146 static PassOwnPtr<WorkerThreadTask> create(const WorkerThread& workerThread, PassOwnPtr<ExecutionContextTask> task, bool isInstrumented
    [all...]
SharedWorkerThread.h 34 #include "core/workers/WorkerThread.h"
40 class SharedWorkerThread : public WorkerThread {
DedicatedWorkerThread.h 34 #include "core/workers/WorkerThread.h"
41 class DedicatedWorkerThread FINAL : public WorkerThread {
WorkerThread.h 61 class WorkerThread : public RefCounted<WorkerThread> {
63 virtual ~WorkerThread();
102 WorkerThread(WorkerLoaderProxy&, WorkerReportingProxy&, PassOwnPtrWillBeRawPtr<WorkerThreadStartupData>);
143 // WorkerThread might get deleted before it had a chance to properly
146 // members during the WorkerThread's destruction.
DedicatedWorkerThread.cpp 47 : WorkerThread(workerLoaderProxy, workerObjectProxy, startupData)
SharedWorkerThread.cpp 46 : WorkerThread(workerLoaderProxy, workerReportingProxy, startupData)
WorkerGlobalScope.h 60 class WorkerThread;
88 WorkerThread* thread() const { return m_thread; }
134 WorkerGlobalScope(const KURL&, const String& userAgent, WorkerThread*, double timeOrigin, PassOwnPtrWillBeRawPtr<WorkerClients>);
162 WorkerThread* m_thread;
  /external/chromium_org/third_party/WebKit/public/platform/
WebWorkerRunLoop.h 32 class WorkerThread;
48 WebWorkerRunLoop(WorkerThread*);
52 WorkerThread* m_workerThread;
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerThread.h 34 #include "core/workers/WorkerThread.h"
40 class ServiceWorkerThread FINAL : public WorkerThread {
ServiceWorkerThread.cpp 46 : WorkerThread(workerLoaderProxy, workerReportingProxy, startupData)
  /device/generic/goldfish/camera/
EmulatedCameraDevice.h 357 friend class WorkerThread;
358 class WorkerThread : public Thread {
365 inline explicit WorkerThread(EmulatedCameraDevice* camera_dev)
373 inline ~WorkerThread()
473 inline WorkerThread* getWorkerThread() const
487 sp<WorkerThread> mWorkerThread;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerDebuggerAgent.cpp 37 #include "core/workers/WorkerThread.h"
46 explicit RunInspectorCommandsTask(WorkerThread* thread)
51 // Process all queued debugger commands. WorkerThread is certainly
54 while (MessageQueueMessageReceived == m_thread->runDebuggerTask(WorkerThread::DontWaitForMessage)) { }
59 WorkerThread* m_thread;
WorkerDebuggerAgent.h 40 class WorkerThread;
  /external/chromium_org/base/threading/
worker_pool_posix.cc 67 class WorkerThread : public PlatformThread::Delegate {
69 WorkerThread(const std::string& name_prefix,
80 DISALLOW_COPY_AND_ASSIGN(WorkerThread);
83 void WorkerThread::ThreadMain() {
94 TRACE_EVENT2("toplevel", "WorkerThread::ThreadMain::Run",
108 // The WorkerThread is non-joinable, so it deletes itself.
167 // The new PlatformThread will take ownership of the WorkerThread object,
169 WorkerThread* worker =
170 new WorkerThread(name_prefix_, this);
  /external/chromium_org/content/child/
child_message_filter.h 56 friend class WorkerThread;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
WorkerScriptDebugServer.h 40 class WorkerThread;
  /external/chromium_org/third_party/WebKit/Source/web/
WebEmbeddedWorkerImpl.h 47 class WorkerThread;
113 RefPtr<WorkerThread> m_workerThread;
WebSharedWorkerImpl.h 40 #include "core/workers/WorkerThread.h"
118 void setWorkerThread(PassRefPtr<WorkerThread> thread) { m_workerThread = thread; }
119 WorkerThread* workerThread() { return m_workerThread.get(); }
145 RefPtr<WorkerThread> m_workerThread;
WebWorkerRunLoop.cpp 28 #include "core/workers/WorkerThread.h"
57 WebWorkerRunLoop::WebWorkerRunLoop(WorkerThread* workerThread)
58 : m_workerThread(workerThread)
  /external/chromium_org/third_party/WebKit/Source/core/
Init.cpp 52 #include "core/workers/WorkerThread.h"
124 WorkerThread::terminateAndWaitForAllWorkers();

Completed in 1956 milliseconds

1 2