Home | History | Annotate | Download | only in cf

Lines Matching refs:m_timer

50     if (m_timer)
51 CFRunLoopTimerInvalidate(m_timer.get());
53 m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context));
59 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
60 CFRunLoopAddTimer(schedulePair->runLoop(), m_timer.get(), schedulePair->mode());
72 if (!m_timer)
74 CFRunLoopTimerInvalidate(m_timer.get());
75 m_timer = 0;
80 return m_timer && CFRunLoopTimerIsValid(m_timer.get());