Home
last modified time | relevance | path

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

/external/chromium_org/net/quic/congestion_control/
Dtcp_loss_algorithm.cc36 SequenceNumberSet lost_packets; in DetectLostPackets() local
51 lost_packets.insert(sequence_number); in DetectLostPackets()
63 lost_packets.insert(sequence_number); in DetectLostPackets()
73 return lost_packets; in DetectLostPackets()
Dtime_loss_algorithm.cc35 SequenceNumberSet lost_packets; in DetectLostPackets() local
59 lost_packets.insert(sequence_number); in DetectLostPackets()
62 return lost_packets; in DetectLostPackets()
Dsend_algorithm_simulator.cc249 SendAlgorithmInterface::CongestionVector lost_packets; in HandlePendingAck() local
272 lost_packets.push_back(make_pair(sender->last_acked, info)); in HandlePendingAck()
276 lost_packets.push_back(make_pair(sender->last_acked, info)); in HandlePendingAck()
296 true, transfer->bytes_in_flight, acked_packets, lost_packets); in HandlePendingAck()
297 DCHECK_LE(kPacketSize * (acked_packets.size() + lost_packets.size()), in HandlePendingAck()
300 kPacketSize * (acked_packets.size() + lost_packets.size()); in HandlePendingAck()
304 transfer->bytes_lost += lost_packets.size() * kPacketSize; in HandlePendingAck()
Dtcp_cubic_sender_test.cc91 SendAlgorithmInterface::CongestionVector lost_packets; in AckNPackets() local
98 true, bytes_in_flight_, acked_packets, lost_packets); in AckNPackets()
105 SendAlgorithmInterface::CongestionVector lost_packets; in LoseNPackets() local
108 lost_packets.push_back( in LoseNPackets()
112 false, bytes_in_flight_, acked_packets, lost_packets); in LoseNPackets()
119 SendAlgorithmInterface::CongestionVector lost_packets; in LosePacket() local
120 lost_packets.push_back( in LosePacket()
123 false, bytes_in_flight_, acked_packets, lost_packets); in LosePacket()
Dtime_loss_algorithm_test.cc37 SequenceNumberSet lost_packets = in VerifyLosses() local
40 EXPECT_EQ(num_losses, lost_packets.size()); in VerifyLosses()
42 EXPECT_TRUE(ContainsKey(lost_packets, losses_expected[i])); in VerifyLosses()
Dtcp_loss_algorithm_test.cc37 SequenceNumberSet lost_packets = in VerifyLosses() local
40 EXPECT_EQ(num_losses, lost_packets.size()); in VerifyLosses()
42 EXPECT_TRUE(ContainsKey(lost_packets, losses_expected[i])); in VerifyLosses()
Dtcp_cubic_sender.cc92 const CongestionVector& lost_packets) { in OnCongestionEvent() argument
99 for (CongestionVector::const_iterator it = lost_packets.begin(); in OnCongestionEvent()
100 it != lost_packets.end(); ++it) { in OnCongestionEvent()
Dpacing_sender.cc40 const CongestionVector& lost_packets) { in OnCongestionEvent() argument
45 rtt_updated, bytes_in_flight, acked_packets, lost_packets); in OnCongestionEvent()
Dsend_algorithm_interface.h54 const CongestionVector& lost_packets) = 0;
Dpacing_sender.h45 const CongestionVector& lost_packets) OVERRIDE;
Dtcp_cubic_sender.h48 const CongestionVector& lost_packets) OVERRIDE;
/external/chromium_org/net/quic/
Dquic_connection_test.cc1149 SequenceNumberSet lost_packets; in TEST_P() local
1154 lost_packets.insert(i * 2); in TEST_P()
1158 .WillOnce(Return(lost_packets)); in TEST_P()
1233 SequenceNumberSet lost_packets; in TEST_P() local
1234 lost_packets.insert(1); in TEST_P()
1236 .WillOnce(Return(lost_packets)); in TEST_P()
1632 SequenceNumberSet lost_packets; in TEST_P() local
1633 lost_packets.insert(2); in TEST_P()
1635 .WillOnce(Return(lost_packets)); in TEST_P()
1889 SequenceNumberSet lost_packets; in TEST_P() local
[all …]
Dquic_sent_packet_manager.cc684 SequenceNumberSet lost_packets = in InvokeLossDetection() local
689 for (SequenceNumberSet::const_iterator it = lost_packets.begin(); in InvokeLossDetection()
690 it != lost_packets.end(); ++it) { in InvokeLossDetection()
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
Drtp_player.cc205 int RegisterSsrc(uint32_t ssrc, LostPackets* lost_packets, Clock* clock) { in RegisterSsrc() argument
212 new Handler(ssrc, payload_types_, lost_packets)); in RegisterSsrc()
272 LostPackets* lost_packets) in Handler() argument
280 lost_packets_(lost_packets) { in Handler()
281 assert(lost_packets); in Handler()
/external/chromium_org/net/quic/test_tools/
Dquic_test_utils.h450 const CongestionVector& lost_packets));