Home
last modified time | relevance | path

Searched refs:t_bytes_acked (Results 1 – 7 of 7) sorted by relevance

/xnu-8020.101.4/bsd/netinet/
H A Dtcp_ledbat.c270 tp->t_bytes_acked += acked; in tcp_ledbat_congestion_avd()
271 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_ledbat_congestion_avd()
272 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_ledbat_congestion_avd()
336 tp->t_bytes_acked += bytes_acked; in ledbat_pp_congestion_avd()
337 if (tp->t_bytes_acked >= tp->snd_cwnd) { in ledbat_pp_congestion_avd()
339 tp->t_bytes_acked -= tp->snd_cwnd; in ledbat_pp_congestion_avd()
404 tp->t_bytes_acked = 0; in ledbat_pp_ack_rcvd()
424 tp->t_bytes_acked += bytes_acked; in ledbat_pp_ack_rcvd()
426 if (tp->t_bytes_acked >= tp->t_maxseg * gain_factor) { in ledbat_pp_ack_rcvd()
427 update = MIN(tp->t_bytes_acked / gain_factor, in ledbat_pp_ack_rcvd()
[all …]
H A Dtcp_newreno.c156 tp->t_bytes_acked += acked; in tcp_newreno_congestion_avd()
157 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_newreno_congestion_avd()
158 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_newreno_congestion_avd()
187 tp->t_bytes_acked += acked; in tcp_newreno_ack_rcvd()
188 if (tp->t_bytes_acked >= cw) { in tcp_newreno_ack_rcvd()
190 tp->t_bytes_acked -= cw; in tcp_newreno_ack_rcvd()
254 tp->t_bytes_acked = 0; in tcp_newreno_post_fr()
342 tp->t_bytes_acked = 0; in tcp_newreno_switch_cc()
H A Dtcp_cubic.c149 tp->t_bytes_acked = 0; in tcp_cubic_cwnd_init_or_reset()
321 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd()
336 if (tp->t_bytes_acked >= tp->snd_cwnd) { in tcp_cubic_congestion_avd()
337 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_cubic_congestion_avd()
353 tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
354 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
378 if (incr_win > 0 && tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
379 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
H A Dtcp_cc.c226 dbg_state.ccd_bytes_acked = tp->t_bytes_acked; in tcp_ccdbg_trace()
H A Dtcp_var.h397 u_int32_t t_bytes_acked; /* ABC "bytes_acked" parameter */ member
715 (_tp_)->t_bytes_acked = 0; \
H A Dtcp_output.c2805 tp->t_bytes_acked = 0; in tcp_output()
H A Dtcp_input.c6783 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()
6818 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()