Searched refs:tcp_timer_active (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/openthread/third_party/tcplp/bsdtcp/ |
H A D | tcp_output.c | 84 if (tcp_timer_active(tp, TT_REXMT)) in tcp_setpersist() 411 if (!tcp_timer_active(tp, TT_PERSIST)) { in tcp_output() 656 !tcp_timer_active(tp, TT_REXMT) && in tcp_output() 657 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_output() 688 if (lbuf_used_space(&tp->sendbuf) && !tcp_timer_active(tp, TT_REXMT) && in tcp_output() 689 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_output() 1105 tcp_timer_active(tp, TT_PERSIST)) in tcp_output() 1122 if (len > 0 && !tcp_timer_active(tp, TT_PERSIST) && SEQ_LT(ntohl(th->th_seq), tp->snd_max)) { in tcp_output() 1223 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_output() 1261 if (!tcp_timer_active(tp, TT_REXMT) && in tcp_output() [all …]
|
H A D | tcp_timer.h | 143 int tcp_timer_active(struct tcpcb *tp, uint32_t timer_type); 166 int tcp_timer_active(struct tcpcb *tp, uint32_t timer_type);
|
H A D | tcp_input.c | 318 ((!tcp_timer_active(tp, TT_DELACK) && \ 1321 else if (!tcp_timer_active(tp, TT_PERSIST)) in tcp_do_segment() 1518 if ((tcp_timer_active(tp, TT_DELACK) || in tcp_do_segment() 1519 tcp_timer_active(tp, TT_REXMT))) in tcp_do_segment() 2104 if (!tcp_timer_active(tp, TT_REXMT) || in tcp_do_segment() 2349 } else if (!tcp_timer_active(tp, TT_PERSIST)) { in tcp_do_segment()
|
H A D | tcp_timer.c | 470 tcp_timer_active(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_active() function
|
/aosp_15_r20/external/openthread/src/core/net/ |
H A D | tcp6.cpp | 350 active = tcp_timer_active(tp, TT_DELACK); in IsTimerActive() 353 active = tcp_timer_active(tp, TT_REXMT) || tcp_timer_active(tp, TT_PERSIST); in IsTimerActive() 356 active = tcp_timer_active(tp, TT_KEEP); in IsTimerActive() 359 active = tcp_timer_active(tp, TT_2MSL); in IsTimerActive() 440 if (tcp_timer_active(tp, TT_REXMT)) in FirePendingTimers()
|