Searched refs:time_sent (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/quiche/src/recovery/ |
D | cubic.rs | 156 let in_congestion_recovery = r.in_congestion_recovery(packet.time_sent); in on_packet_acked() 256 r: &mut Recovery, time_sent: Instant, epoch: packet::Epoch, now: Instant, in congestion_event() 258 let in_congestion_recovery = r.in_congestion_recovery(time_sent); in congestion_event() 328 time_sent: now, in cubic_slow_start() 352 time_sent: p.time_sent, in cubic_slow_start() 402 time_sent: now + rtt, in cubic_congestion_avoidance() 435 time_sent: now + Duration::from_millis(1), in cubic_collapse_cwnd_and_restart() 467 time_sent: now, in cubic_hystart_limited_slow_start() 503 time_sent: p.time_sent, in cubic_hystart_limited_slow_start() 538 time_sent: p.time_sent, in cubic_hystart_limited_slow_start() [all …]
|
D | mod.rs | 297 largest_newly_acked_sent_time = unacked.time_sent; in on_ack_received() 311 time_sent: unacked.time_sent, in on_ack_received() 623 if unacked.time_sent <= lost_send_time || in detect_lost_packets() 651 None => unacked.time_sent + loss_delay, in detect_lost_packets() 654 cmp::min(loss_time, unacked.time_sent + loss_delay), in detect_lost_packets() 722 self.congestion_event(largest_lost_pkt.time_sent, epoch, now); in on_packets_lost() 730 &mut self, time_sent: Instant, epoch: packet::Epoch, now: Instant, in congestion_event() 732 (self.cc_ops.congestion_event)(self, time_sent, epoch, now); in congestion_event() 822 time_sent: Instant, 889 pub time_sent: Instant, field [all …]
|
D | reno.rs | 57 if r.in_congestion_recovery(packet.time_sent) { in on_packet_acked() 102 r: &mut Recovery, time_sent: Instant, epoch: packet::Epoch, now: Instant, in congestion_event() 106 if !r.in_congestion_recovery(time_sent) { in congestion_event() 175 time_sent: now, in reno_slow_start() 199 time_sent: p.time_sent, in reno_slow_start() 251 time_sent: now + rtt, in reno_congestion_avoidance()
|
D | delivery_rate.rs | 82 pkt.time_sent - pkt.recent_delivered_packet_sent_time; in on_packet_acked() 89 self.recent_delivered_packet_sent_time = Some(pkt.time_sent); in on_packet_acked() 197 time_sent: Instant::now(), in rate_check() 221 time_sent: Instant::now(), in rate_check() 254 time_sent: Instant::now(), in app_limited_check() 276 time_sent: Instant::now(), in app_limited_check()
|
D | hystart.rs | 211 time_sent: now + Duration::from_millis(10), in reno_slow_start() 254 time_sent: now + Duration::from_millis(pkt_num), in limited_slow_start() 278 time_sent: now + Duration::from_millis(pkt_num), in limited_slow_start()
|
/external/rust/crates/quiche/src/ |
D | lib.rs | 2550 time_sent: now, in send()
|