Searched refs:snd_max (Results 1 – 8 of 8) sorted by relevance
/external/openthread/third_party/tcplp/bsdtcp/ |
D | tcp_output.c | 132 idle = (tp->t_flags & TF_LASTIDLE) || (tp->snd_max == tp->snd_una); in tcp_output() 155 SEQ_LT(tp->snd_nxt, tp->snd_max)) in tcp_output() 486 if (SEQ_LT(tp->snd_nxt, tp->snd_max)) /* retransmit case */ in tcp_output() 610 SEQ_GT(tp->snd_max, tp->snd_una) && in tcp_output() 781 else if (SEQ_LT(tp->snd_nxt, tp->snd_max) || sack_rxmit) { in tcp_output() 944 tp->snd_nxt == tp->snd_max) in tcp_output() 979 if (len > 0 && SEQ_GEQ(tp->snd_nxt, tp->snd_max) && in tcp_output() 1018 th->th_seq = htonl(tp->snd_max); 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() 1150 if (SEQ_GT(tp->snd_nxt, tp->snd_max)) { in tcp_output() [all …]
|
D | tcp_input.c | 228 tp->snd_recover = tp->snd_max; in cc_cong_signal() 235 tp->snd_recover = tp->snd_max; in cc_cong_signal() 270 tp->snd_nxt = tp->snd_max; in cc_cong_signal() 786 tp->snd_max = tp->iss/* + 1*/; in tcp_input() 1115 tp->snd_nxt == tp->snd_max && in tcp_do_segment() 1136 SEQ_LEQ(th->th_ack, tp->snd_max) && in tcp_do_segment() 1221 if (tp->snd_una == tp->snd_max) in tcp_do_segment() 1398 SEQ_GT(th->th_ack, tp->snd_max))) { in tcp_do_segment() 1423 SEQ_GT(th->th_ack, tp->snd_max))) { in tcp_do_segment() 1893 if (SEQ_GT(th->th_ack, tp->snd_max)) { in tcp_do_segment() [all …]
|
D | tcp_seq.h | 65 (tp)->snd_una = (tp)->snd_nxt = (tp)->snd_max = (tp)->snd_up = \
|
D | tcp_sack.c | 358 SEQ_LT(sack.start, tp->snd_max) && in tcp_sack_doack() 360 SEQ_LEQ(sack.end, tp->snd_max)) in tcp_sack_doack()
|
D | tcp_timer.c | 446 tp->snd_recover = tp->snd_max; in tcp_timer_rexmt()
|
D | tcp_var.h | 228 tcp_seq snd_max; /* highest sequence number sent; member
|
/external/openthread/third_party/tcplp/bsdtcp/cc/ |
D | cc_newreno.c | 143 if (CCV(ccv, snd_nxt) == CCV(ccv, snd_max)) in newreno_ack_received() 233 CCV(ccv, snd_max))) in newreno_post_recovery() 234 CCV(ccv, snd_cwnd) = CCV(ccv, snd_max) - in newreno_post_recovery()
|
/external/openthread/src/core/net/ |
D | tcp6.cpp | 478 return tp.snd_max - tp.snd_una; in GetInFlightBytes()
|