Searched refs:_timerSource (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/IOHIDFamily-503.215.2/IOHIDFamily/
H A DIOHIDTestDriver.h36 IOTimerEventSource * _timerSource; member in class:IOHIDTestDriver
H A DIOHIDTestDriver.cpp36 if ( _timerSource )
38 _timerSource->cancelTimeout();
39 _timerSource->release();
40 _timerSource = 0;
61 if ( _timerSource ) _timerSource->cancelTimeout();
75 _timerSource = IOTimerEventSource::timerEventSource(
78 if ( _timerSource == 0)
81 if ( _workLoop->addEventSource( _timerSource ) != kIOReturnSuccess )
84 _timerSource
[all...]
/macosx-10.9.5/CF-855.17/
H A DCFRunLoop.c537 dispatch_source_t _timerSource; member in struct:__CFRunLoopMode
583 CFStringAppendFormat(result, NULL, CFSTR("source = %p (%s), "), rlm->_timerSource, rlm->_timerFired ? "fired" : "not fired");
605 if (rlm->_timerSource) {
606 dispatch_source_cancel(rlm->_timerSource);
607 dispatch_release(rlm->_timerSource);
792 rlm->_timerSource = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, rlm->_queue);
795 dispatch_source_set_event_handler(rlm->_timerSource, ^{
800 _dispatch_source_set_runloop_timer_4CF(rlm->_timerSource, DISPATCH_TIME_FOREVER, DISPATCH_TIME_FOREVER, 321);
801 dispatch_resume(rlm->_timerSource);
1952 _dispatch_source_set_runloop_timer_4CF(rlm->_timerSource, deadlin
[all...]

Completed in 188 milliseconds