Home
last modified time | relevance | path

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

/xnu-8796.141.3/bsd/netinet/
H A Dtcp_ledbat.c204 tp->t_bytes_acked += acked; in tcp_ledbat_congestion_avd()
205 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_ledbat_congestion_avd()
206 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_ledbat_congestion_avd()
269 tp->t_bytes_acked += bytes_acked; in ledbat_pp_congestion_avd()
270 if (tp->t_bytes_acked >= tp->snd_cwnd) { in ledbat_pp_congestion_avd()
272 tp->t_bytes_acked -= tp->snd_cwnd; in ledbat_pp_congestion_avd()
334 tp->t_bytes_acked = 0; in ledbat_pp_ack_rcvd()
355 tp->t_bytes_acked += bytes_acked; in ledbat_pp_ack_rcvd()
357 if (tp->t_bytes_acked >= tp->t_maxseg * gain_factor) { in ledbat_pp_ack_rcvd()
358 update = MIN(tp->t_bytes_acked / gain_factor, in ledbat_pp_ack_rcvd()
[all …]
H A Dtcp_newreno.c149 tp->t_bytes_acked += acked; in tcp_newreno_congestion_avd()
150 if (tp->t_bytes_acked > tp->snd_cwnd) { in tcp_newreno_congestion_avd()
151 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_newreno_congestion_avd()
180 tp->t_bytes_acked += acked; in tcp_newreno_ack_rcvd()
181 if (tp->t_bytes_acked >= cw) { in tcp_newreno_ack_rcvd()
183 tp->t_bytes_acked -= cw; in tcp_newreno_ack_rcvd()
247 tp->t_bytes_acked = 0; in tcp_newreno_post_fr()
335 tp->t_bytes_acked = 0; in tcp_newreno_switch_cc()
H A Dtcp_cubic.c120 tp->t_bytes_acked = 0; in tcp_cubic_cwnd_init_or_reset()
293 tp->t_bytes_acked += BYTES_ACKED(th, tp); in tcp_cubic_congestion_avd()
308 if (tp->t_bytes_acked >= tp->snd_cwnd) { in tcp_cubic_congestion_avd()
309 tp->t_bytes_acked -= tp->snd_cwnd; in tcp_cubic_congestion_avd()
324 if (incr_win > 0 && tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
325 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
349 if (incr_win > 0 && tp->t_bytes_acked >= incr_win) { in tcp_cubic_congestion_avd()
350 tp->t_bytes_acked -= incr_win; in tcp_cubic_congestion_avd()
H A Dtcp_ccdbg.c121 dbg_state.ccd_bytes_acked = tp->t_bytes_acked; in tcp_ccdbg_trace()
H A Dtcp_var.h405 u_int32_t t_bytes_acked; /* ABC "bytes_acked" parameter */ member
757 (_tp_)->t_bytes_acked = 0; \
H A Dtcp_output.c3068 tp->t_bytes_acked = 0; in tcp_output()
H A Dtcp_input.c7084 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()
7119 tp->t_bytes_acked = 0; in inp_fc_unthrottle_tcp()