Home
last modified time | relevance | path

Searched refs:tcp_timer_active (Results 1 – 5 of 5) sorted by relevance

/external/openthread/third_party/tcplp/bsdtcp/
Dtcp_output.c83 if (tcp_timer_active(tp, TT_REXMT)) in tcp_setpersist()
366 if (!tcp_timer_active(tp, TT_PERSIST)) { in tcp_output()
611 !tcp_timer_active(tp, TT_REXMT) && in tcp_output()
612 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_output()
643 if (lbuf_used_space(&tp->sendbuf) && !tcp_timer_active(tp, TT_REXMT) && in tcp_output()
644 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_output()
1015 tcp_timer_active(tp, TT_PERSIST)) in tcp_output()
1032 if (len > 0 && !tcp_timer_active(tp, TT_PERSIST) && SEQ_LT(ntohl(th->th_seq), tp->snd_max)) { in tcp_output()
1133 !tcp_timer_active(tp, TT_PERSIST)) { in tcp_output()
1171 if (!tcp_timer_active(tp, TT_REXMT) && in tcp_output()
[all …]
Dtcp_timer.h143 int tcp_timer_active(struct tcpcb *tp, uint32_t timer_type);
166 int tcp_timer_active(struct tcpcb *tp, uint32_t timer_type);
Dtcp_timer.c470 tcp_timer_active(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_active() function
Dtcp_input.c313 ((!tcp_timer_active(tp, TT_DELACK) && \
1223 else if (!tcp_timer_active(tp, TT_PERSIST)) in tcp_do_segment()
1944 if (!tcp_timer_active(tp, TT_REXMT) || in tcp_do_segment()
2184 } else if (!tcp_timer_active(tp, TT_PERSIST)) { in tcp_do_segment()
/external/openthread/src/core/net/
Dtcp6.cpp323 active = tcp_timer_active(tp, TT_DELACK); in IsTimerActive()
326 active = tcp_timer_active(tp, TT_REXMT) || tcp_timer_active(tp, TT_PERSIST); in IsTimerActive()
329 active = tcp_timer_active(tp, TT_KEEP); in IsTimerActive()
332 active = tcp_timer_active(tp, TT_2MSL); in IsTimerActive()
413 if (tcp_timer_active(tp, TT_REXMT)) in FirePendingTimers()