Home
last modified time | relevance | path

Searched refs:m_runLoop (Results 1 – 15 of 15) sorted by relevance

/external/webkit/Source/WebKit2/Platform/qt/
DRunLoopQt.cpp43 TimerObject(RunLoop* runLoop) : m_runLoop(runLoop) in TimerObject()
49 Q_SLOT void performWork() { m_runLoop->performWork(); } in performWork()
55 RunLoop::TimerBase::timerFired(m_runLoop, event->timerId()); in timerEvent()
59 RunLoop* m_runLoop; member in RunLoop::TimerObject
107 : m_runLoop(runLoop) in TimerBase()
123 m_ID = m_runLoop->m_timerObject->startTimer(millis); in start()
125 m_runLoop->m_activeTimers.set(m_ID, this); in start()
132 TimerMap::iterator it = m_runLoop->m_activeTimers.find(m_ID); in stop()
133 if (it == m_runLoop->m_activeTimers.end()) in stop()
136 m_runLoop->m_activeTimers.remove(it); in stop()
[all …]
/external/webkit/Source/WebKit2/Platform/win/
DRunLoopWin.cpp190 : m_runLoop(runLoop) in TimerBase()
204 m_runLoop->m_activeTimers.set(m_ID, this); in start()
205 ::SetTimer(m_runLoop->m_runLoopMessageWindow, m_ID, nextFireInterval * 1000, 0); in start()
210 TimerMap::iterator it = m_runLoop->m_activeTimers.find(m_ID); in stop()
211 if (it == m_runLoop->m_activeTimers.end()) in stop()
214 m_runLoop->m_activeTimers.remove(it); in stop()
215 ::KillTimer(m_runLoop->m_runLoopMessageWindow, m_ID); in stop()
220 return m_runLoop->m_activeTimers.contains(m_ID); in isActive()
/external/webkit/Source/WebKit2/Platform/mac/
DRunLoopMac.mm45 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) function
131 CFRunLoopAddTimer(m_runLoop->m_runLoop, m_timer, kCFRunLoopCommonModes);
/external/webkit/Source/WebCore/workers/
DWorkerRunLoop.cpp111 : m_runLoop(runLoop) in RunLoopSetup()
113 if (!m_runLoop.m_nestedCount) in RunLoopSetup()
114 threadGlobalData().threadTimers().setSharedTimer(m_runLoop.m_sharedTimer.get()); in RunLoopSetup()
115 m_runLoop.m_nestedCount++; in RunLoopSetup()
120 m_runLoop.m_nestedCount--; in ~RunLoopSetup()
121 if (!m_runLoop.m_nestedCount) in ~RunLoopSetup()
125 WorkerRunLoop& m_runLoop; member in WebCore::RunLoopSetup
DWorkerThread.cpp127 if (m_runLoop.terminated()) { in workerThread()
163 m_runLoop.run(m_workerContext.get()); in runEventLoop()
240 m_runLoop.postTask(WorkerThreadShutdownStartTask::create()); in stop()
242 m_runLoop.terminate(); in stop()
DWorkerThread.h55 WorkerRunLoop& runLoop() { return m_runLoop; } in runLoop()
84 WorkerRunLoop m_runLoop; variable
/external/webkit/Source/WebCore/platform/cf/
DSchedulePair.h55 CFRunLoopRef runLoop() const { return m_runLoop.get(); } in runLoop()
68 RetainPtr<CFRunLoopRef> m_runLoop; variable
DSchedulePair.cpp35 : m_runLoop(runLoop) in SchedulePair()
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DConnection.cpp86 RunLoop* m_runLoop; member in CoreIPC::Connection::SyncMessageState
118 : m_runLoop(runLoop) in SyncMessageState()
127 ASSERT(syncMessageStateMap().contains(m_runLoop)); in ~SyncMessageState()
128 syncMessageStateMap().remove(m_runLoop); in ~SyncMessageState()
145m_runLoop->scheduleWork(WorkItem::create(this, &SyncMessageState::dispatchMessageAndResetDidSchedu… in processIncomingMessage()
159 ASSERT(m_runLoop == RunLoop::current()); in dispatchMessages()
/external/webkit/Source/WebKit2/Platform/gtk/
DRunLoopGtk.cpp85 : m_runLoop(runLoop) in TimerBase()
120 g_source_attach(m_timerSource.get(), m_runLoop->m_runLoopContext); in start()
/external/webkit/Source/WebKit2/Platform/
DRunLoop.h88 RunLoop* m_runLoop; variable
152 CFRunLoopRef m_runLoop; variable
/external/webkit/Source/WebKit2/WebProcess/
DWebProcess.h76 RunLoop* runLoop() const { return m_runLoop; } in runLoop()
191 RunLoop* m_runLoop; variable
DWebProcess.cpp155 m_runLoop = runLoop; in initialize()
520 return m_runLoop == RunLoop::main(); in isSeparateProcess()
553 m_runLoop->stop(); in terminate()
660 m_runLoop->stop(); in didClose()
/external/webkit/Source/WebCore/platform/mac/
DSchedulePairMac.mm37 , m_runLoop([runLoop getCFRunLoop])
/external/webkit/Source/WebKit2/
DChangeLog-2011-02-161177 Initialize m_runLoop.