Home
last modified time | relevance | path

Searched refs:acked_packets (Results 1 – 25 of 28) sorted by relevance

12

/external/webrtc/logging/rtc_event_log/events/
Drtc_event_generic_ack_received.cc23 const std::vector<AckedPacket>& acked_packets) { in CreateLogs() argument
26 result.reserve(acked_packets.size()); in CreateLogs()
27 for (const AckedPacket& packet : acked_packets) { in CreateLogs()
Drtc_event_generic_ack_received.h64 const std::vector<AckedPacket>& acked_packets);
/external/cronet/net/third_party/quiche/src/quiche/quic/core/congestion_control/
Dtcp_cubic_sender_bytes_test.cc83 AckedPacketVector acked_packets; in AckNPackets() local
87 acked_packets.push_back( in AckNPackets()
92 acked_packets, lost_packets, 0, 0); in AckNPackets()
100 AckedPacketVector acked_packets; in LoseNPackets() local
108 acked_packets, lost_packets, 0, 0); in LoseNPackets()
114 AckedPacketVector acked_packets; in LosePacket() local
119 acked_packets, lost_packets, 0, 0); in LosePacket()
787 AckedPacketVector acked_packets; in TEST_F() local
792 acked_packets.clear(); in TEST_F()
793 acked_packets.push_back( in TEST_F()
[all …]
Dbbr2_misc.cc94 QuicTime event_time, const AckedPacketVector& acked_packets, in OnCongestionEventStart() argument
102 acked_packets.empty() ? false in OnCongestionEventStart()
104 acked_packets.rbegin()->packet_number); in OnCongestionEventStart()
107 bandwidth_sampler_.OnCongestionEvent(event_time, acked_packets, in OnCongestionEventStart()
126 << acked_packets.size() in OnCongestionEventStart()
Dpacing_sender.cc41 const AckedPacketVector& acked_packets, in OnCongestionEvent() argument
51 acked_packets, lost_packets, num_ect, num_ce); in OnCongestionEvent()
Dbandwidth_sampler.cc278 const AckedPacketVector& acked_packets, in OnCongestionEvent() argument
295 if (acked_packets.empty()) { in OnCongestionEvent()
303 for (const auto& packet : acked_packets) { in OnCongestionEvent()
339 lost_packets.back().packet_number > acked_packets.back().packet_number in OnCongestionEvent()
Dbbr_sender.cc329 const AckedPacketVector& acked_packets, in OnCongestionEvent() argument
346 if (!acked_packets.empty()) { in OnCongestionEvent()
347 QuicPacketNumber last_acked_packet = acked_packets.rbegin()->packet_number; in OnCongestionEvent()
354 sampler_.OnCongestionEvent(event_time, acked_packets, lost_packets, in OnCongestionEvent()
371 << " bytes from " << acked_packets.size() in OnCongestionEvent()
Dbbr2_sender.cc279 const AckedPacketVector& acked_packets, in OnCongestionEvent() argument
292 model_.OnCongestionEventStart(event_time, acked_packets, lost_packets, in OnCongestionEvent()
309 OnCongestionEvent(prior_in_flight, event_time, acked_packets, in OnCongestionEvent()
351 << " END CongestionEvent(acked:" << quiche::PrintElements(acked_packets) in OnCongestionEvent()
Dbbr2_drain.h27 const AckedPacketVector& acked_packets,
Dbbr2_probe_rtt.h27 const AckedPacketVector& acked_packets,
Dbbr2_startup.h29 const AckedPacketVector& acked_packets,
Dpacing_sender.h55 const AckedPacketVector& acked_packets,
Dtcp_cubic_sender_bytes.cc93 const AckedPacketVector& acked_packets, in OnCongestionEvent() argument
106 for (const AckedPacket& acked_packet : acked_packets) { in OnCongestionEvent()
Dsend_algorithm_interface.h90 const AckedPacketVector& acked_packets,
Dbandwidth_sampler.h230 QuicTime ack_time, const AckedPacketVector& acked_packets,
351 QuicTime ack_time, const AckedPacketVector& acked_packets,
Dbandwidth_sampler_test.cc128 AckedPacketVector acked_packets; in OnCongestionEvent() local
131 acked_packets.push_back(MakeAckedPacket(*it)); in OnCongestionEvent()
132 bytes_in_flight_ -= acked_packets.back().bytes_acked; in OnCongestionEvent()
143 clock_.Now(), acked_packets, lost_packets, max_bandwidth_, in OnCongestionEvent()
Dbbr2_probe_bw.h30 const AckedPacketVector& acked_packets,
Dtcp_cubic_sender_bytes.h56 const AckedPacketVector& acked_packets,
Dbbr2_misc.h348 const AckedPacketVector& acked_packets,
651 const AckedPacketVector& acked_packets,
Dbbr2_sender.h57 const AckedPacketVector& acked_packets,
Dbbr_sender.h113 const AckedPacketVector& acked_packets,
/external/cronet/third_party/quic_trace/src/tools/
Dquic_trace_to_time_sequence_gnuplot.cc118 for (const AckBlock& block : frame.ack_info().acked_packets()) { in PrintTimeSequence()
/external/cronet/third_party/quic_trace/src/tools/render/
Dprocessed_trace.cc132 for (const AckBlock& range : frame.ack_info().acked_packets()) { in ProcessedTrace()
288 const AckBlock& block = ack.acked_packets(i); in AckSummary()
/external/cronet/net/third_party/quiche/src/quiche/quic/core/
Dquic_trace_visitor_test.cc136 for (const auto& block : info.acked_packets()) { in TEST_F()
Dquic_sent_packet_manager_test.cc1389 Invoke([](const AckedPacketVector& acked_packets) { in TEST_F() argument
1390 EXPECT_EQ(1u, acked_packets.size()); in TEST_F()
1391 EXPECT_EQ(QuicPacketNumber(1), acked_packets[0].packet_number); in TEST_F()
1393 EXPECT_EQ(0u, acked_packets[0].bytes_acked); in TEST_F()
1415 Invoke([](const AckedPacketVector& acked_packets) { in TEST_F() argument
1416 EXPECT_EQ(1u, acked_packets.size()); in TEST_F()
1417 EXPECT_EQ(QuicPacketNumber(2), acked_packets[0].packet_number); in TEST_F()
1419 EXPECT_EQ(kDefaultLength, acked_packets[0].bytes_acked); in TEST_F()

12