Home
last modified time | relevance | path

Searched refs:to_ticks (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/sys/
H A Dcallout.h101 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ argument
102 callout_reset_sbt_on((c), tick_sbt * (to_ticks), 0, (fn), (arg), \
/freebsd/sys/netinet/
H A Dsctputil.c2160 uint32_t to_ticks; in sctp_timer_start() local
2207 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto); in sctp_timer_start()
2209 to_ticks = sctp_msecs_to_ticks(net->RTO); in sctp_timer_start()
2227 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto); in sctp_timer_start()
2229 to_ticks = sctp_msecs_to_ticks(net->RTO); in sctp_timer_start()
2246 to_ticks = sctp_msecs_to_ticks(stcb->asoc.delayed_ack); in sctp_timer_start()
2260 to_ticks = sctp_msecs_to_ticks(stcb->asoc.initial_rto); in sctp_timer_start()
2262 to_ticks = sctp_msecs_to_ticks(net->RTO); in sctp_timer_start()
2288 to_ticks = stcb->asoc.initial_rto; in sctp_timer_start()
2290 to_ticks = net->RTO; in sctp_timer_start()
[all …]
/freebsd/sys/kern/
H A Dkern_timeout.c1076 callout_schedule_on(struct callout *c, int to_ticks, int cpu) in callout_schedule_on() argument
1078 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, cpu); in callout_schedule_on()
1082 callout_schedule(struct callout *c, int to_ticks) in callout_schedule() argument
1084 return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, c->c_cpu); in callout_schedule()
/freebsd/stand/kshim/
H A Dbsd_kernel.c497 callout_reset(struct callout *c, int to_ticks, in callout_reset() argument
504 c->timeout = ticks + to_ticks; in callout_reset()