Home
last modified time | relevance | path

Searched refs:lost_packets (Results 1 – 25 of 40) sorted by relevance

12

/external/webrtc/modules/audio_processing/transient/
Dclick_annotate.cc67 int lost_packets = 0; in main() local
86 ++lost_packets; in main()
106 return lost_packets; in main()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/congestion_control/
Dpacing_sender.cc42 const LostPacketVector& lost_packets, in OnCongestionEvent() argument
46 if (!lost_packets.empty()) { in OnCongestionEvent()
51 acked_packets, lost_packets, num_ect, num_ce); in OnCongestionEvent()
Dpacing_sender_test.cc64 LostPacketVector lost_packets; in InitPacingRate() local
65 lost_packets.push_back( in InitPacingRate()
69 lost_packets, 0, 0); in InitPacingRate()
338 LostPacketVector lost_packets; in TEST_F() local
339 lost_packets.push_back( in TEST_F()
345 empty_acked, lost_packets, 0, 0); in TEST_F()
Dtcp_cubic_sender_bytes_test.cc84 LostPacketVector lost_packets; in AckNPackets() local
92 acked_packets, lost_packets, 0, 0); in AckNPackets()
101 LostPacketVector lost_packets; in LoseNPackets() local
104 lost_packets.push_back( in LoseNPackets()
108 acked_packets, lost_packets, 0, 0); in LoseNPackets()
115 LostPacketVector lost_packets; in LosePacket() local
116 lost_packets.push_back( in LosePacket()
119 acked_packets, lost_packets, 0, 0); in LosePacket()
Dbbr2_sender.cc280 const LostPacketVector& lost_packets, in OnCongestionEvent() argument
292 model_.OnCongestionEventStart(event_time, acked_packets, lost_packets, in OnCongestionEvent()
296 if (!lost_packets.empty()) { in OnCongestionEvent()
297 connection_stats_->slowstart_packets_lost += lost_packets.size(); in OnCongestionEvent()
310 lost_packets, congestion_event)); in OnCongestionEvent()
352 << ", lost:" << lost_packets.size() << ") " in OnCongestionEvent()
Duber_loss_algorithm_test.cc79 LostPacketVector lost_packets; in VerifyLosses() local
82 QuicPacketNumber(largest_newly_acked), packets_acked, &lost_packets); in VerifyLosses()
87 ASSERT_EQ(losses_expected.size(), lost_packets.size()); in VerifyLosses()
89 EXPECT_EQ(lost_packets[i].packet_number, in VerifyLosses()
Dbbr_sender.cc330 const LostPacketVector& lost_packets, in OnCongestionEvent() argument
349 UpdateRecoveryState(last_acked_packet, !lost_packets.empty(), in OnCongestionEvent()
354 sampler_.OnCongestionEvent(event_time, acked_packets, lost_packets, in OnCongestionEvent()
385 stats_->slowstart_packets_lost += lost_packets.size(); in OnCongestionEvent()
392 if (!lost_packets.empty()) { in OnCongestionEvent()
399 UpdateGainCyclePhase(event_time, prior_in_flight, !lost_packets.empty()); in OnCongestionEvent()
Dgeneral_loss_algorithm_test.cc76 LostPacketVector lost_packets; in VerifyLosses() local
79 QuicPacketNumber(largest_newly_acked), packets_acked, &lost_packets); in VerifyLosses()
88 ASSERT_EQ(losses_expected.size(), lost_packets.size()); in VerifyLosses()
90 EXPECT_EQ(lost_packets[i].packet_number, in VerifyLosses()
Dbbr2_drain.h28 const LostPacketVector& lost_packets,
Dbbr2_probe_rtt.h28 const LostPacketVector& lost_packets,
Dbbr2_startup.h30 const LostPacketVector& lost_packets,
Dbandwidth_sampler.cc279 const LostPacketVector& lost_packets, in OnCongestionEvent() argument
287 for (const LostPacket& packet : lost_packets) { in OnCongestionEvent()
339 lost_packets.back().packet_number > acked_packets.back().packet_number in OnCongestionEvent()
Dpacing_sender.h56 const LostPacketVector& lost_packets,
Dtcp_cubic_sender_bytes.cc94 const LostPacketVector& lost_packets, QuicPacketCount /*num_ect*/, in OnCongestionEvent() argument
102 for (const LostPacket& lost_packet : lost_packets) { in OnCongestionEvent()
Dsend_algorithm_interface.h91 const LostPacketVector& lost_packets,
Dbbr2_misc.cc95 const LostPacketVector& lost_packets, in OnCongestionEventStart() argument
108 lost_packets, MaxBandwidth(), in OnCongestionEventStart()
Dbandwidth_sampler.h231 const LostPacketVector& lost_packets, QuicBandwidth max_bandwidth,
352 const LostPacketVector& lost_packets, QuicBandwidth max_bandwidth,
Dbbr_sender_test.cc402 LostPacketVector lost_packets; in TEST_F() local
403 lost_packets.emplace_back(least_inflight, least_inflight_packet_size); in TEST_F()
405 lost_packets, 0, 0); in TEST_F()
1296 LostPacketVector lost_packets; in TEST_F() local
1297 lost_packets.emplace_back( in TEST_F()
1303 lost_packets, 0, 0); in TEST_F()
Dbandwidth_sampler_test.cc135 LostPacketVector lost_packets; in OnCongestionEvent() local
138 lost_packets.push_back(MakeLostPacket(*it)); in OnCongestionEvent()
139 bytes_in_flight_ -= lost_packets.back().bytes_lost; in OnCongestionEvent()
143 clock_.Now(), acked_packets, lost_packets, max_bandwidth_, in OnCongestionEvent()
Dbbr2_probe_bw.h31 const LostPacketVector& lost_packets,
Dtcp_cubic_sender_bytes.h57 const LostPacketVector& lost_packets,
/external/webrtc/rtc_tools/rtc_event_log_visualizer/
Dalerts.cc202 int64_t lost_packets = static_cast<double>(bwe_update.fraction_lost) / 255 * in AnalyzeLog() local
204 total_lost_packets += lost_packets; in AnalyzeLog()
/external/webrtc/call/
Dsimulated_network_unittest.cc373 int lost_packets = 0; in TEST() local
376 lost_packets++; in TEST()
379 EXPECT_EQ(lost_packets, 4); in TEST()
Dfake_network_pipe_unittest.cc383 int lost_packets = kNumPackets - receiver.delivered_sequence_numbers_.size(); in TEST_F() local
384 double loss_fraction = lost_packets / static_cast<double>(kNumPackets); in TEST_F()
398 double average_burst_length = static_cast<double>(lost_packets) / num_bursts; in TEST_F()
/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()
877 let mut lost_packets = 0; in detect_lost_packets() localVariable
916 lost_packets += 1; in detect_lost_packets()
938 (lost_packets, lost_bytes) in detect_lost_packets()

12