HomeSort by: relevance | last modified time | path
    Searched refs:to_ticks (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
kern_timeout.c 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);
    [all...]
  /src/sys/netinet/
sctputil.c 1086 int to_ticks; local in function:sctp_timer_start
1092 to_ticks = 0;
1101 to_ticks = SCTP_ITERATOR_TICKS;
1117 to_ticks = MSEC_TO_TICKS(rto_val);
1130 to_ticks = MSEC_TO_TICKS(stcb->asoc.initial_rto);
1132 to_ticks = MSEC_TO_TICKS(net->RTO);
1144 to_ticks = inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_RECV];
1153 to_ticks = MSEC_TO_TICKS(stcb->asoc.initial_rto);
1155 to_ticks = MSEC_TO_TICKS(net->RTO);
1218 to_ticks = this_random + stcb->asoc.initial_rto + delay
    [all...]

Completed in 42 milliseconds