Lines Matching refs:when

291 	cyc_time_t		when;
335 clock_deadline_for_periodic_event(wrapTC->when.cyt_interval, mach_absolute_time(),
356 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, mach_absolute_time(), &(wrapTC->deadline) );
361 timer_call_add_cyclic(wrap_timer_call_t *wrapTC, cyc_handler_t *handler, cyc_time_t *when)
368 wrapTC->when = *when;
370 nanoseconds_to_absolutetime( wrapTC->when.cyt_interval, (uint64_t *)&wrapTC->when.cyt_interval );
375 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, now, &(wrapTC->deadline) );
415 cyclic_timer_add(cyc_handler_t *handler, cyc_time_t *when)
421 return timer_call_add_cyclic( wrapTC, handler, when );
487 * If the processor was offline when dtrace started, we did not allocate
509 cyc_time_t when;
525 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, mach_absolute_time(), &(wrapTC->deadline) );
528 /* Did cyclic_remove request a wakeup call when this thread call was re-armed? */
529 if (wrapTC->when.cyt_interval == WAKEUP_REAPER)
534 cyclic_add(cyc_handler_t *handler, cyc_time_t *when)
544 wrapTC->when = *when;
546 ASSERT(when->cyt_when == 0);
547 ASSERT(when->cyt_interval < WAKEUP_REAPER);
549 nanoseconds_to_absolutetime(wrapTC->when.cyt_interval, (uint64_t *)&wrapTC->when.cyt_interval);
554 clock_deadline_for_periodic_event( wrapTC->when.cyt_interval, now, &(wrapTC->deadline) );
577 wrapTC->when.cyt_interval = WAKEUP_REAPER;
588 wrapTC->when.cyt_interval = NEARLY_FOREVER;
1266 * ENAMETOOLONG is returned when 'len' bytes have been copied in but the NUL terminator was
1268 * Note that we do *not* stuff a NUL terminator when returning ENAMETOOLONG, that's left
1303 * ENAMETOOLONG is returned when 'len' bytes have been copied out but the NUL terminator was
1305 * Note that we do *not* stuff a NUL terminator when returning ENAMETOOLONG, that's left
1643 * This exists to prevent build errors when dtrace is unconfigured.