Searched refs:timer_source (Results 1 – 1 of 1) sorted by relevance
/external/mdnsresponder/Clients/ |
D | dns-sd.c | 226 dispatch_source_t timer_source; variable 618 if (timer_source) in myTimerCallBack() 619 …dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_… in myTimerCallBack() 652 if (timer_source) in reg_reply() 653 …dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_… in reg_reply() 835 timer_source = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, main_queue); in HandleEvents() 836 if (timer_source) in HandleEvents() 839 …dispatch_source_set_timer(timer_source, dispatch_time(DISPATCH_TIME_NOW, (uint64_t)timeOut * NSEC_… in HandleEvents() 841 dispatch_source_set_event_handler(timer_source, ^{myTimerCallBack();}); in HandleEvents() 842 dispatch_resume(timer_source); in HandleEvents()
|