Lines Matching defs:which
263 * Each connection has 5 timers associated with it, which can be scheduled
783 * (most of which have hopefully been retired) that have bad VJ
784 * header compression code which trashes TCP segments containing
825 tcp_bblog_timer(struct tcpcb *tp, tt_which which, tt_what what, uint32_t ticks)
837 lgb->tlb_flex1 = (what << 8) | which;
878 tt_which which;
882 which = tcp_timer_next(tp, NULL);
883 MPASS(which < TT_N);
884 tp->t_timers[which] = SBT_MAX;
885 tp->t_precisions[which] = 0;
887 tcp_bblog_timer(tp, which, TT_PROCESSING, 0);
888 if (tcp_timersw[which](tp)) {
889 tcp_bblog_timer(tp, which, TT_PROCESSED, 0);
890 if ((which = tcp_timer_next(tp, &precision)) != TT_N) {
893 tp->t_timers[which], precision, tcp_timer_enter,
904 tcp_timer_activate(struct tcpcb *tp, tt_which which, u_int delta)
921 &tp->t_timers[which], &tp->t_precisions[which]);
924 tp->t_timers[which] = SBT_MAX;
926 tcp_bblog_timer(tp, which, what, delta);
928 if ((which = tcp_timer_next(tp, &precision)) != TT_N)
929 callout_reset_sbt_on(&tp->t_callout, tp->t_timers[which],
937 tcp_timer_active(struct tcpcb *tp, tt_which which)
942 return (tp->t_timers[which] != SBT_MAX);