Home | History | Annotate | Download | only in qt

Lines Matching refs:m_runLoop

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);
137 m_runLoop->m_timerObject->killTimer(m_ID);