Lines Matching refs:when

326 	cyc_time_t when;
342 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, mach_absolute_time(), &(wrapTC->deadline) );
345 /* Did timer_call_remove_cyclic request a wakeup call when this timer call was re-armed? */
346 if (wrapTC->when.cyt_interval == WAKEUP_REAPER)
351 timer_call_add_cyclic(wrap_timer_call_t *wrapTC, cyc_handler_t *handler, cyc_time_t *when)
357 wrapTC->when = *when;
359 nanoseconds_to_absolutetime( wrapTC->when.cyt_interval, (uint64_t *)&wrapTC->when.cyt_interval );
364 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, now, &(wrapTC->deadline) );
379 wrapTC->when.cyt_interval = WAKEUP_REAPER;
395 cyclic_timer_add(cyc_handler_t *handler, cyc_time_t *when)
401 return timer_call_add_cyclic( wrapTC, handler, when );
482 cyc_time_t when;
498 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, mach_absolute_time(), &(wrapTC->deadline) );
501 /* Did cyclic_remove request a wakeup call when this thread call was re-armed? */
502 if (wrapTC->when.cyt_interval == WAKEUP_REAPER)
507 cyclic_add(cyc_handler_t *handler, cyc_time_t *when)
517 wrapTC->when = *when;
519 ASSERT(when->cyt_when == 0);
520 ASSERT(when->cyt_interval < WAKEUP_REAPER);
522 nanoseconds_to_absolutetime(wrapTC->when.cyt_interval, (uint64_t *)&wrapTC->when.cyt_interval);
527 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, now, &(wrapTC->deadline) );
550 wrapTC->when.cyt_interval = WAKEUP_REAPER;
561 wrapTC->when.cyt_interval = NEARLY_FOREVER;
1230 * ENAMETOOLONG is returned when 'len' bytes have been copied in but the NUL terminator was
1232 * Note that we do *not* stuff a NUL terminator when returning ENAMETOOLONG, that's left
1267 * ENAMETOOLONG is returned when 'len' bytes have been copied out but the NUL terminator was
1269 * Note that we do *not* stuff a NUL terminator when returning ENAMETOOLONG, that's left
1607 * This exists to prevent build errors when dtrace is unconfigured.