HomeSort by relevance Sort by last modified time
    Searched refs:m_runLoop (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebKit2/Platform/qt/
RunLoopQt.cpp 43 TimerObject(RunLoop* runLoop) : m_runLoop(runLoop)
49 Q_SLOT void performWork() { m_runLoop->performWork(); }
55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId());
59 RunLoop* m_runLoop;
107 : m_runLoop(runLoop)
123 m_ID = m_runLoop->m_timerObject->startTimer(millis);
125 m_runLoop->m_activeTimers.set(m_ID, this);
132 TimerMap::iterator it = m_runLoop->m_activeTimers.find(m_ID);
133 if (it == m_runLoop->m_activeTimers.end())
136 m_runLoop->m_activeTimers.remove(it)
    [all...]
  /external/webkit/Source/WebCore/platform/mac/
SchedulePairMac.mm 37 , m_runLoop([runLoop getCFRunLoop])
  /external/webkit/Source/WebKit2/Platform/mac/
RunLoopMac.mm 45 m_runLoop = CFRunLoopGetCurrent();
49 CFRunLoopAddSource(m_runLoop, m_runLoopSource, kCFRunLoopCommonModes);
72 ASSERT(m_runLoop == CFRunLoopGetCurrent());
74 if (m_runLoop == main()->m_runLoop) {
87 CFRunLoopStop(m_runLoop);
93 CFRunLoopWakeUp(m_runLoop);
113 : m_runLoop(runLoop)
131 CFRunLoopAddTimer(m_runLoop->m_runLoop, m_timer, kCFRunLoopCommonModes)
    [all...]
  /external/webkit/Source/WebKit2/Platform/win/
RunLoopWin.cpp 190 : m_runLoop(runLoop)
204 m_runLoop->m_activeTimers.set(m_ID, this);
205 ::SetTimer(m_runLoop->m_runLoopMessageWindow, m_ID, nextFireInterval * 1000, 0);
210 TimerMap::iterator it = m_runLoop->m_activeTimers.find(m_ID);
211 if (it == m_runLoop->m_activeTimers.end())
214 m_runLoop->m_activeTimers.remove(it);
215 ::KillTimer(m_runLoop->m_runLoopMessageWindow, m_ID);
220 return m_runLoop->m_activeTimers.contains(m_ID);
  /external/webkit/Source/WebCore/platform/cf/
SchedulePair.cpp 35 : m_runLoop(runLoop)
SchedulePair.h 55 CFRunLoopRef runLoop() const { return m_runLoop.get(); }
68 RetainPtr<CFRunLoopRef> m_runLoop;
  /external/webkit/Source/WebCore/workers/
WorkerRunLoop.cpp 111 : m_runLoop(runLoop)
113 if (!m_runLoop.m_nestedCount)
114 threadGlobalData().threadTimers().setSharedTimer(m_runLoop.m_sharedTimer.get());
115 m_runLoop.m_nestedCount++;
120 m_runLoop.m_nestedCount--;
121 if (!m_runLoop.m_nestedCount)
125 WorkerRunLoop& m_runLoop;
WorkerThread.h 55 WorkerRunLoop& runLoop() { return m_runLoop; }
84 WorkerRunLoop m_runLoop;
WorkerThread.cpp 127 if (m_runLoop.terminated()) {
163 m_runLoop.run(m_workerContext.get());
240 m_runLoop.postTask(WorkerThreadShutdownStartTask::create());
242 m_runLoop.terminate();
  /external/webkit/Source/WebKit2/Platform/gtk/
RunLoopGtk.cpp 85 : m_runLoop(runLoop)
120 g_source_attach(m_timerSource.get(), m_runLoop->m_runLoopContext);
  /external/webkit/Source/WebKit2/Platform/
RunLoop.h 88 RunLoop* m_runLoop;
152 CFRunLoopRef m_runLoop;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.cpp 86 RunLoop* m_runLoop;
118 : m_runLoop(runLoop)
127 ASSERT(syncMessageStateMap().contains(m_runLoop));
128 syncMessageStateMap().remove(m_runLoop);
145 m_runLoop->scheduleWork(WorkItem::create(this, &SyncMessageState::dispatchMessageAndResetDidScheduleDispatchMessagesWork));
159 ASSERT(m_runLoop == RunLoop::current());
  /external/webkit/Source/WebKit2/WebProcess/
WebProcess.h 76 RunLoop* runLoop() const { return m_runLoop; }
191 RunLoop* m_runLoop;
WebProcess.cpp 155 m_runLoop = runLoop;
520 return m_runLoop == RunLoop::main();
553 m_runLoop->stop();
660 m_runLoop->stop();

Completed in 90 milliseconds