Searched refs:timeout_timer (Results 1 - 2 of 2) sorted by relevance

/macosx-10.9.5/CF-855.17/
H A DCFRunLoop.c2333 dispatch_source_t timeout_timer = NULL; local
2340 timeout_timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, queue);
2341 dispatch_retain(timeout_timer);
2342 timeout_context->ds = timeout_timer;
2345 dispatch_set_context(timeout_timer, timeout_context); // source gets ownership of context
2346 dispatch_source_set_event_handler_f(timeout_timer, __CFRunLoopTimeout);
2347 dispatch_source_set_cancel_handler_f(timeout_timer, __CFRunLoopTimeoutCancel);
2349 dispatch_source_set_timer(timeout_timer, dispatch_time(1, ns_at), DISPATCH_TIME_FOREVER, 1000ULL);
2350 dispatch_resume(timeout_timer);
2591 if (timeout_timer) {
[all...]
/macosx-10.9.5/bind9-45.100/bind9/unit/atf-src/atf-run/
H A Dtest-program.cpp719 child_timer timeout_timer(timeout, child_pid, terminate_poll);
722 timed_out = timeout_timer.fired();

Completed in 226 milliseconds