Lines Matching refs:to_ticks
416 callout_schedule_locked(callout_impl_t *c, kmutex_t *lock, int to_ticks)
422 c, c->c_func, c->c_arg, c->c_flags, to_ticks);
424 KASSERT(to_ticks >= 0);
439 c->c_time = to_ticks + occ->cc_ticks;
452 c->c_time = to_ticks + occ->cc_ticks;
458 c->c_time = to_ticks + cc->cc_ticks;
476 callout_reset(callout_t *cs, int to_ticks, void (*func)(void *), void *arg)
488 callout_schedule_locked(c, lock, to_ticks);
498 callout_schedule(callout_t *cs, int to_ticks)
506 callout_schedule_locked(c, lock, to_ticks);