Searched refs:tcp_timer_active (Results 1 – 5 of 5) sorted by relevance
| /external/openthread/third_party/tcplp/bsdtcp/ |
| D | tcp_output.c | 83 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 …]
|
| 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);
|
| D | tcp_timer.c | 470 tcp_timer_active(struct tcpcb *tp, uint32_t timer_type) in tcp_timer_active() function
|
| D | tcp_input.c | 313 ((!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/ |
| D | tcp6.cpp | 323 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()
|