Searched refs:timer_source (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A Dtimer.c61 CFRunLoopTimerRef timer_source; member in struct:timer_callout
122 timer_callout_process(CFRunLoopTimerRef timer_source, void * info) argument
184 callout->timer_source
192 CFRunLoopAddTimer(CFRunLoopGetCurrent(), callout->timer_source,
222 if (callout->timer_source) {
224 CFRunLoopTimerInvalidate(callout->timer_source);
225 CFRelease(callout->timer_source);
226 callout->timer_source = 0;
/macosx-10.10.1/Heimdal-398.1.2/lib/ipc/
H A Dtimer.c67 static dispatch_source_t timer_source; variable
96 dispatch_source_set_timer(timer_source,
102 dispatch_source_set_timer(timer_source,
167 timer_source = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER,
169 dispatch_source_set_event_handler(timer_source, ^{ trigger_jobs(); });
170 dispatch_resume(timer_source);
/macosx-10.10.1/PowerManagement-494.1.2/BATS/
H A Dpowerassertions-timeouts.c185 dispatch_source_t timer_source = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, local
188 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)kMyWaitForJudgement * NSEC_PER_SEC), DISPATCH_TIME_FOREVER, 0);
190 dispatch_source_set_event_handler(timer_source,
262 dispatch_resume(timer_source);
/macosx-10.10.1/mDNSResponder-561.1.1/Clients/
H A Ddns-sd.c252 dispatch_source_t timer_source; variable
816 if (timer_source)
817 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_PER_SEC),
850 if (timer_source)
851 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_PER_SEC),
1234 timer_source = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, main_queue);
1235 if (timer_source)
1238 dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_PER_SEC),
1240 dispatch_source_set_event_handler(timer_source, ^{myTimerCallBack();});
1241 dispatch_resume(timer_source);
[all...]

Completed in 308 milliseconds