Home | History | Annotate | Download | only in mac

Lines Matching refs:runLoop

27 #import "RunLoop.h"
31 void RunLoop::performWork(void* context)
37 static_cast<RunLoop*>(context)->performWork();
40 static_cast<RunLoop*>(context)->performWork();
43 RunLoop::RunLoop()
52 RunLoop::~RunLoop()
59 void RunLoop::run()
70 void RunLoop::stop()
90 void RunLoop::wakeUp()
96 // RunLoop::Timer
98 void RunLoop::TimerBase::timerFired(CFRunLoopTimerRef, void* context)
112 RunLoop::TimerBase::TimerBase(RunLoop* runLoop)
113 : m_runLoop(runLoop)
118 RunLoop::TimerBase::~TimerBase()
123 void RunLoop::TimerBase::start(double nextFireInterval, bool repeat)
134 void RunLoop::TimerBase::stop()
144 bool RunLoop::TimerBase::isActive() const