Home
last modified time | relevance | path

Searched refs:lost_bytes (Results 1 – 9 of 9) sorted by relevance

/external/rust/crates/quiche/src/recovery/bbr/
Dper_ack.rs164 let lost_bytes = r.bbr_state.newly_lost_bytes; in bbr_modulate_cwnd_for_recovery() localVariable
166 if lost_bytes > 0 { in bbr_modulate_cwnd_for_recovery()
170 .saturating_sub(lost_bytes) in bbr_modulate_cwnd_for_recovery()
305 let lost_bytes = bbr.newly_lost_bytes; in bbr_is_next_cycle_phase() localVariable
318 (lost_bytes > 0 || in bbr_is_next_cycle_phase()
Dmod.rs323 r: &mut Recovery, lost_bytes: usize, time_sent: Instant, in congestion_event()
326 r.bbr_state.newly_lost_bytes = lost_bytes; in congestion_event()
/external/rust/crates/quiche/src/recovery/
Dmod.rs563 let (lost_packets, lost_bytes) = in on_ack_received()
574 Ok((lost_packets, lost_bytes)) in on_ack_received()
585 let (lost_packets, lost_bytes) = in on_loss_detection_timeout()
591 return (lost_packets, lost_bytes); in on_loss_detection_timeout()
878 let mut lost_bytes = 0; in detect_lost_packets() localVariable
899 lost_bytes += unacked.size; in detect_lost_packets()
930 self.bytes_lost += lost_bytes as u64; in detect_lost_packets()
933 self.on_packets_lost(lost_bytes, &pkt, epoch, now); in detect_lost_packets()
938 (lost_packets, lost_bytes) in detect_lost_packets()
1004 &mut self, lost_bytes: usize, largest_lost_pkt: &Sent, in on_packets_lost()
[all …]
/external/cronet/net/third_party/quiche/src/quiche/quic/core/congestion_control/
Dtcp_cubic_sender_bytes.cc252 QuicByteCount lost_bytes, in OnPacketLost() argument
260 stats_->slowstart_bytes_lost += lost_bytes; in OnPacketLost()
263 congestion_window_ = std::max(congestion_window_ - lost_bytes, in OnPacketLost()
Dtcp_cubic_sender_bytes.h97 void OnPacketLost(QuicPacketNumber packet_number, QuicByteCount lost_bytes,
/external/rust/crates/quiche/src/
Dpath.rs392 let (lost_packets, lost_bytes) = self.recovery.on_loss_detection_timeout( in on_loss_detection_timeout()
440 (lost_packets, lost_bytes) in on_loss_detection_timeout()
459 lost_bytes: self.recovery.bytes_lost, in stats()
855 pub lost_bytes: u64, field
896 self.sent_bytes, self.recv_bytes, self.lost_bytes, in fmt()
Dffi.rs1108 lost_bytes: u64, field
1137 out.lost_bytes = stats.lost_bytes; in quiche_conn_stats()
1177 lost_bytes: u64, field
1204 out.lost_bytes = stats.lost_bytes; in quiche_conn_path_stats()
Dlib.rs1292 lost_bytes: u64, field
1741 lost_bytes: 0, in with_tls()
5556 let (lost_packets, lost_bytes) = p.on_loss_detection_timeout( in on_timeout()
5564 self.lost_bytes += lost_bytes as u64; in on_timeout()
6208 lost_bytes: self.lost_bytes, in stats()
6604 let (lost_packets, lost_bytes) = p.recovery.on_ack_received( in process_frame()
6614 self.lost_bytes += lost_bytes as u64; in process_frame()
7413 pub lost_bytes: u64, field
7473 self.sent_bytes, self.recv_bytes, self.lost_bytes, in fmt()
/external/rust/crates/quiche/include/
Dquiche.h515 uint64_t lost_bytes; member
606 uint64_t lost_bytes; member