Home | History | Annotate | Download | only in mac

Lines Matching refs:m_timer

114     , m_timer(0)
125 if (m_timer)
130 m_timer = CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context);
131 CFRunLoopAddTimer(m_runLoop->m_runLoop, m_timer, kCFRunLoopCommonModes);
136 if (!m_timer)
139 CFRunLoopTimerInvalidate(m_timer);
140 CFRelease(m_timer);
141 m_timer = 0;
146 return m_timer && CFRunLoopTimerIsValid(m_timer);