Searched refs:runLoop (Results 1 - 25 of 26) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketChannel.cpp59 WorkerRunLoop& runLoop = workerGlobalScope->thread()->runLoop(); local
61 mode.append(String::number(runLoop.createUniqueId()));
/external/chromium_org/third_party/WebKit/Source/web/
H A DWorkerFileSystemClient.cpp93 WorkerRunLoop& runLoop = workerThread->runLoop(); local
97 mode.append(String::number(runLoop.createUniqueId()));
103 if (runLoop.runInMode(workerGlobalScope, mode) == MessageQueueTerminated) {
116 WorkerRunLoop& runLoop = workerThread->runLoop(); local
120 mode.append(String::number(runLoop.createUniqueId()));
127 if (runLoop.runInMode(workerGlobalScope, mode) == MessageQueueTerminated)
H A DIDBFactoryBackendProxy.cpp125 WorkerRunLoop& runLoop = workerGlobalScope->thread()->runLoop(); local
128 mode.append(String::number(runLoop.createUniqueId()));
132 if (runLoop.runInMode(workerGlobalScope, mode) == MessageQueueTerminated) {
H A DWebSharedWorkerImpl.cpp327 m_workerThread->runLoop().postTaskForMode(task, mode);
353 workerThread()->runLoop().postTask(
406 workerThread()->runLoop().postTaskForMode(createCallbackTask(resumeWorkerContextTask, true), WorkerDebuggerAgent::debuggerTaskMode);
416 workerThread()->runLoop().postTaskForMode(createCallbackTask(connectToWorkerContextInspectorTask, true), WorkerDebuggerAgent::debuggerTaskMode);
428 workerThread()->runLoop().postTaskForMode(createCallbackTask(reconnectToWorkerContextInspectorTask, String(savedState)), WorkerDebuggerAgent::debuggerTaskMode);
438 workerThread()->runLoop().postTaskForMode(createCallbackTask(disconnectFromWorkerContextInspectorTask, true), WorkerDebuggerAgent::debuggerTaskMode);
448 workerThread()->runLoop().postTaskForMode(createCallbackTask(dispatchOnInspectorBackendTask, String(message)), WorkerDebuggerAgent::debuggerTaskMode);
H A DDatabaseObserver.cpp109 WebCore::WorkerRunLoop& runLoop = workerThread->runLoop(); local
114 mode.append(String::number(runLoop.createUniqueId()));
119 if (runLoop.runInMode(workerGlobalScope, mode) == MessageQueueTerminated) {
H A DWorkerAsyncFileSystemChromium.cpp75 if (m_workerGlobalScope->thread()->runLoop().runInMode(m_workerGlobalScope, m_modeForCurrentOperation) == MessageQueueTerminated) {
188 m_modeForCurrentOperation.append(String::number(m_workerGlobalScope->thread()->runLoop().createUniqueId()));
H A DWorkerFileWriterCallbacksBridge.cpp145 m_mode.append(String::number(toWorkerGlobalScope(scriptExecutionContext)->thread()->runLoop().createUniqueId()));
222 if (context->thread()->runLoop().runInMode(context, m_mode) == MessageQueueTerminated)
/external/chromium_org/webkit/child/
H A Dwebkitplatformsupport_child_impl.cc83 const WebKit::WebWorkerRunLoop& runLoop) {
85 worker_task_runner->OnWorkerRunLoopStarted(runLoop);
89 const WebKit::WebWorkerRunLoop& runLoop) {
91 worker_task_runner->OnWorkerRunLoopStopped(runLoop);
82 didStartWorkerRunLoop( const WebKit::WebWorkerRunLoop& runLoop) argument
88 didStopWorkerRunLoop( const WebKit::WebWorkerRunLoop& runLoop) argument
H A Dwebkitplatformsupport_child_impl.h50 const WebKit::WebWorkerRunLoop& runLoop) OVERRIDE;
52 const WebKit::WebWorkerRunLoop& runLoop) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DWorkerRuntimeAgent.cpp91 result = context->thread()->runLoop().runInMode(context, WorkerDebuggerAgent::debuggerTaskMode);
H A DWorkerDebuggerAgent.cpp69 while (MessageQueueMessageReceived == m_thread->runLoop().runInMode(m_workerGlobalScope, WorkerDebuggerAgent::debuggerTaskMode, WorkerRunLoop::DontWaitForMessage)) { }
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAsyncAudioDecoder.cpp72 decoder->runLoop();
75 void AsyncAudioDecoder::runLoop() function in class:WebCore::AsyncAudioDecoder
135 // Our ownership was given up in AsyncAudioDecoder::runLoop()
H A DAsyncAudioDecoder.h80 void runLoop();
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DWorkerThreadableLoader.cpp69 WorkerRunLoop& runLoop = workerGlobalScope->thread()->runLoop(); local
73 mode.append(String::number(runLoop.createUniqueId()));
78 result = runLoop.runInMode(workerGlobalScope, mode);
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerRunLoop.cpp109 RunLoopSetup(WorkerRunLoop& runLoop) argument
110 : m_runLoop(runLoop)
240 void WorkerRunLoop::Task::performTask(const WorkerRunLoop& runLoop, ScriptExecutionContext* context) argument
243 if ((!workerGlobalScope->isClosing() && !runLoop.terminated()) || m_task->isCleanupTask())
H A DWorkerThread.h57 WorkerRunLoop& runLoop() { return m_runLoop; } function in class:WebCore::WorkerThread
H A DWorkerMessagingProxy.cpp294 m_workerThread->runLoop().postTask(MessageWorkerGlobalScopeTask::create(message, channels));
305 m_workerThread->runLoop().postTaskForMode(task, mode);
347 m_workerThread->runLoop().postTask(m_queuedEarlyTasks[i].release());
378 m_workerThread->runLoop().postTaskForMode(createCallbackTask(connectToWorkerGlobalScopeInspectorTask, true), WorkerDebuggerAgent::debuggerTaskMode);
391 m_workerThread->runLoop().postTaskForMode(createCallbackTask(disconnectFromWorkerGlobalScopeInspectorTask, true), WorkerDebuggerAgent::debuggerTaskMode);
403 m_workerThread->runLoop().postTaskForMode(createCallbackTask(dispatchOnInspectorBackendTask, String(message)), WorkerDebuggerAgent::debuggerTaskMode);
H A DWorkerThread.cpp237 (*it)->runLoop().postTask(adoptPtr(new ReleaseFastMallocFreeMemoryTask));
H A DWorkerGlobalScope.cpp181 thread()->runLoop().postTask(task);
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
H A DLwjglAbstractDisplay.java145 protected void runLoop(){ method in class:LwjglAbstractDisplay
223 runLoop();
H A DLwjglOffscreenBuffer.java109 protected void runLoop(){ method in class:LwjglOffscreenBuffer
147 runLoop();
H A DLwjglCanvas.java188 protected void runLoop(){ method in class:LwjglCanvas
227 super.runLoop();
H A DLwjglDisplay.java170 public void runLoop(){ method in class:LwjglDisplay
182 super.runLoop();
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DWorkerScriptDebugServer.cpp101 result = m_workerGlobalScope->thread()->runLoop().runInMode(m_workerGlobalScope, m_debuggerTaskMode);
H A DWorkerScriptController.cpp79 WebKit::Platform::current()->didStopWorkerRunLoop(WebKit::WebWorkerRunLoop(&m_workerGlobalScope->thread()->runLoop()));

Completed in 308 milliseconds

12