HomeSort by relevance Sort by last modified time
    Searched refs:runLoop (Results 26 - 50 of 50) sorted by null

12

  /external/webkit/Source/WebKit/chromium/src/
WebWorkerImpl.cpp 130 workerThread()->runLoop().postTask(
WorkerAsyncFileSystemChromium.cpp 83 if (m_workerContext->thread()->runLoop().runInMode(m_workerContext, m_modeForCurrentOperation) == MessageQueueTerminated) {
217 m_modeForCurrentOperation.append(String::number(m_workerContext->thread()->runLoop().createUniqueId()));
WorkerFileWriterCallbacksBridge.cpp 141 m_mode.append(String::number(static_cast<WorkerContext*>(scriptExecutionContext)->thread()->runLoop().createUniqueId()));
212 if (context->thread()->runLoop().runInMode(context, m_mode) == MessageQueueTerminated)
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.cpp 31 #include "RunLoop.h"
42 static PassRefPtr<SyncMessageState> getOrCreate(RunLoop*);
58 return RunLoop::dispatchSentMessagesUntil(windowsToReceiveMessages, m_waitForSyncReplySemaphore, absoluteTime);
69 explicit SyncMessageState(RunLoop*);
71 typedef HashMap<RunLoop*, SyncMessageState*> SyncMessageStateMap;
86 RunLoop* m_runLoop;
101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop)
104 pair<SyncMessageStateMap::iterator, bool> result = syncMessageStateMap().add(runLoop, 0);
111 RefPtr<SyncMessageState> syncMessageState = adoptRef(new SyncMessageState(runLoop));
    [all...]
  /external/webkit/Source/WebCore/workers/
WorkerMessagingProxy.cpp 256 m_workerThread->runLoop().postTask(MessageWorkerContextTask::create(message, channels));
267 m_workerThread->runLoop().postTaskForMode(task, mode);
308 m_workerThread->runLoop().postTask(m_queuedEarlyTasks[i].release());
DefaultSharedWorkerRepository.cpp 154 m_thread->runLoop().postTaskForMode(task, mode);
320 proxy.thread()->runLoop().postTask(SharedWorkerConnectTask::create(port));
386 proxy->thread()->runLoop().postTask(SharedWorkerConnectTask::create(port));
WorkerThread.cpp 179 workerContext->thread()->runLoop().terminate();
WorkerContext.cpp 209 thread()->runLoop().postTask(task);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnection.cpp 59 m_connection = CoreIPC::Connection::createClientConnection(connectionIdentifier, this, WebProcess::shared().runLoop());
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
ChunkedUpdateDrawingArea.cpp 45 , m_displayTimer(WebProcess::shared().runLoop(), this, &ChunkedUpdateDrawingArea::display)
PageOverlay.cpp 52 , m_fadeAnimationTimer(WebProcess::shared().runLoop(), this, &PageOverlay::fadeAnimationTimerFired)
TiledDrawingArea.cpp 50 , m_displayTimer(WebProcess::shared().runLoop(), this, &TiledDrawingArea::display)
51 , m_tileUpdateTimer(WebProcess::shared().runLoop(), this, &TiledDrawingArea::tileUpdateTimerFired)
DrawingAreaImpl.cpp 69 , m_displayTimer(WebProcess::shared().runLoop(), this, &DrawingAreaImpl::displayTimerFired)
70 , m_exitCompositingTimer(WebProcess::shared().runLoop(), this, &DrawingAreaImpl::exitAcceleratedCompositingMode)
WebPage.cpp 42 #include "RunLoop.h"
423 WebProcess::shared().runLoop()->stop();
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/
LwjglCanvas.java 188 protected void runLoop(){
227 super.runLoop();
LwjglDisplay.java 170 public void runLoop(){
182 super.runLoop();
  /external/webkit/Source/WebCore/websockets/
WorkerThreadableWebSocketChannel.cpp 415 WorkerRunLoop& runLoop = m_workerContext->thread()->runLoop();
419 result = runLoop.runInMode(m_workerContext.get(), m_taskMode); // May cause this bridge to get disconnected, which makes m_workerContext become null.
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptDebugServer.cpp 135 result = workerThread->runLoop().runInMode(workerContext, "debugger");
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.h 73 void initialize(CoreIPC::Connection::Identifier, RunLoop*);
76 RunLoop* runLoop() const { return m_runLoop; }
191 RunLoop* m_runLoop;
WebProcess.cpp 34 #include "RunLoop.h"
145 void WebProcess::initialize(CoreIPC::Connection::Identifier serverIdentifier, RunLoop* runLoop)
149 m_connection = CoreIPC::Connection::createClientConnection(serverIdentifier, this, runLoop);
155 m_runLoop = runLoop;
520 return m_runLoop == RunLoop::main();
  /external/webkit/Source/WebCore/platform/network/mac/
ResourceHandleMac.mm 337 if (NSRunLoop *runLoop = (*it)->nsRunLoop()) {
338 [connection() scheduleInRunLoop:runLoop forMode:(NSString *)(*it)->mode()];
344 // Start the connection if we did schedule with at least one runloop.
345 // We can't start the connection until we have one runloop scheduled.
392 NSRunLoop *runLoop = pair->nsRunLoop();
393 if (!runLoop)
395 [d->m_connection.get() scheduleInRunLoop:runLoop forMode:(NSString *)pair->mode()];
408 if (NSRunLoop *runLoop = pair->nsRunLoop())
409 [d->m_connection.get() unscheduleFromRunLoop:runLoop forMode:(NSString *)pair->mode()];
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.mm 67 CFRunLoopRef runLoop = (CFRunLoopRef)callContext->originatingLoop;
69 ASSERT(CFRunLoopGetCurrent() == runLoop);
71 CFRunLoopStop(runLoop);
  /external/webkit/Source/WebKit/mac/WebView/
WebViewPrivate.h 124 - (void)scheduleInRunLoop:(NSRunLoop *)runLoop forMode:(NSString *)mode;
125 - (void)unscheduleFromRunLoop:(NSRunLoop *)runLoop forMode:(NSString *)mode;
WebView.mm 750 NSRunLoop *runLoop = [NSRunLoop mainRunLoop];
752 NSRunLoop *runLoop = [NSRunLoop currentRunLoop];
756 [self scheduleInRunLoop:runLoop forMode:(NSString *)kCFRunLoopCommonModes];
758 [self scheduleInRunLoop:runLoop forMode:NSDefaultRunLoopMode];
    [all...]
  /prebuilts/tools/darwin-x86/swt/
swt.jar 

Completed in 740 milliseconds

12