Searched refs:m_workerThread (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerInspectorProxy.cpp20 : m_workerThread(0)
37 m_workerThread = workerThread;
44 if (m_workerThread)
46 m_workerThread = 0;
57 if (!m_workerThread)
61 m_workerThread->postDebuggerTask(createCrossThreadTask(connectToWorkerGlobalScopeInspectorTask, true));
72 if (!m_workerThread)
74 m_workerThread->postDebuggerTask(createCrossThreadTask(disconnectFromWorkerGlobalScopeInspectorTask, true));
84 if (!m_workerThread)
86 m_workerThread
[all...]
H A DWorkerMessagingProxy.cpp126 m_workerInspectorProxy->workerThreadCreated(m_executionContext.get(), m_workerThread.get(), scriptURL);
143 if (m_workerThread) {
145 m_workerThread->postTask(MessageWorkerGlobalScopeTask::create(message, channels));
155 ASSERT(m_workerThread);
156 m_workerThread->postTask(task);
200 m_workerThread = workerThread;
208 m_workerThread->postTask(m_queuedEarlyTasks[i].release());
221 if (proxy->m_workerThread)
232 m_workerThread = nullptr;
244 if (m_workerThread)
[all...]
H A DWorkerInspectorProxy.h43 WorkerThread* m_workerThread; member in class:blink::FINAL
H A DWorkerThread.cpp91 : m_workerThread(workerThread)
119 m_workerThread->postDelayedTask(createSameThreadTask(&WorkerSharedTimer::OnTimeout, this), delay);
132 ASSERT(m_workerThread->workerGlobalScope());
133 if (m_sharedTimerFunction && m_running && !m_workerThread->workerGlobalScope()->isClosing())
137 WorkerThread* m_workerThread; member in class:blink::WorkerSharedTimer
155 WorkerGlobalScope* workerGlobalScope = m_workerThread.workerGlobalScope();
163 if ((!workerGlobalScope->isClosing() && !m_workerThread.terminated()) || m_task->isCleanupTask())
171 : m_workerThread(workerThread)
178 InspectorInstrumentation::didPostExecutionContextTask(m_workerThread.workerGlobalScope(), m_task.get());
181 const WorkerThread& m_workerThread; member in class:blink::WorkerThreadTask
[all...]
H A DWorkerMessagingProxy.h93 RefPtr<DedicatedWorkerThread> m_workerThread; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebWorkerRunLoop.cpp58 : m_workerThread(workerThread)
64 m_workerThread->postTask(TaskForwarder::create(adoptPtr(task)));
65 return !m_workerThread->terminated();
70 return m_workerThread == o.m_workerThread;
75 return m_workerThread < o.m_workerThread;
H A DWebSharedWorkerImpl.h118 void setWorkerThread(PassRefPtr<WorkerThread> thread) { m_workerThread = thread; }
119 WorkerThread* workerThread() { return m_workerThread.get(); }
145 RefPtr<WorkerThread> m_workerThread; member in class:blink::FINAL
H A DWebEmbeddedWorkerImpl.cpp129 if (m_embeddedWorker.m_askedToTerminate || !m_embeddedWorker.m_workerThread)
131 m_embeddedWorker.m_workerThread->postTask(task);
132 return !m_embeddedWorker.m_workerThread->terminated();
223 if (m_workerThread)
224 m_workerThread->stop();
425 m_workerThread = ServiceWorkerThread::create(*m_loaderProxy, *m_workerGlobalScopeProxy, startupData.release());
426 m_workerThread->start();
427 m_workerInspectorProxy->workerThreadCreated(document, m_workerThread.get(), scriptURL);
H A DWebEmbeddedWorkerImpl.h113 RefPtr<WorkerThread> m_workerThread; member in class:blink::FINAL
H A DWebSharedWorkerImpl.cpp188 if (m_workerThread)
189 m_workerThread->stop();
318 m_workerThread->postTask(task);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebWorkerRunLoop.h52 WorkerThread* m_workerThread; member in class:blink::WebWorkerRunLoop

Completed in 164 milliseconds