Searched refs:tcp_timer_active (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/netinet/ |
H A D | tcp_output.c | 146 tcp_timer_active((tp), TT_REXMT) || \ 147 tcp_timer_active((tp), TT_PERSIST), \ 502 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_default_output() 506 if (!tcp_timer_active(tp, TT_PERSIST)) in tcp_default_output() 723 !tcp_timer_active(tp, TT_REXMT) && in tcp_default_output() 724 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_default_output() 750 if (sbavail(&so->so_snd) && !tcp_timer_active(tp, TT_REXMT) && in tcp_default_output() 751 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_default_output() 1242 tcp_timer_active(tp, TT_PERSIST)) in tcp_default_output() 1544 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_default_output() [all …]
|
H A D | tcp_input.c | 515 ((!tcp_timer_active(tp, TT_DELACK) && \ 1881 else if (!tcp_timer_active(tp, TT_PERSIST)) in tcp_do_segment() 2006 if ((tcp_timer_active(tp, TT_DELACK) || in tcp_do_segment() 2007 tcp_timer_active(tp, TT_REXMT))) in tcp_do_segment() 2639 } else if (!tcp_timer_active(tp, TT_REXMT)) { in tcp_do_segment() 3014 } else if (!tcp_timer_active(tp, TT_PERSIST)) in tcp_do_segment()
|
H A D | tcp_timer.c | 937 tcp_timer_active(struct tcpcb *tp, tt_which which) in tcp_timer_active() function
|
H A D | tcp_var.h | 1480 bool tcp_timer_active(struct tcpcb *, tt_which);
|
H A D | tcp_subr.c | 1072 tp->snd_una != tp->snd_max) && !(tcp_timer_active(tp, TT_REXMT) || in tcp_default_fb_init() 1073 tcp_timer_active(tp, TT_PERSIST))) { in tcp_default_fb_init() 1088 if (!tcp_timer_active(tp, TT_KEEP)) in tcp_default_fb_init()
|
/freebsd/sys/netinet/tcp_stacks/ |
H A D | bbr.c | 9865 if (tcp_timer_active(tp, TT_PERSIST)) { in bbr_stop_all_timers()
|
H A D | rack.c | 8104 if (tcp_timer_active(tp, TT_PERSIST)) { in rack_stop_all_timers()
|