/external/chromium_org/net/quic/congestion_control/ |
D | tcp_loss_algorithm.cc | 36 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()
|
D | time_loss_algorithm.cc | 35 SequenceNumberSet lost_packets; in DetectLostPackets() local 59 lost_packets.insert(sequence_number); in DetectLostPackets() 62 return lost_packets; in DetectLostPackets()
|
D | send_algorithm_simulator.cc | 249 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()
|
D | tcp_cubic_sender_test.cc | 91 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()
|
D | time_loss_algorithm_test.cc | 37 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()
|
D | tcp_loss_algorithm_test.cc | 37 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()
|
D | tcp_cubic_sender.cc | 92 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()
|
D | pacing_sender.cc | 40 const CongestionVector& lost_packets) { in OnCongestionEvent() argument 45 rtt_updated, bytes_in_flight, acked_packets, lost_packets); in OnCongestionEvent()
|
D | send_algorithm_interface.h | 54 const CongestionVector& lost_packets) = 0;
|
D | pacing_sender.h | 45 const CongestionVector& lost_packets) OVERRIDE;
|
D | tcp_cubic_sender.h | 48 const CongestionVector& lost_packets) OVERRIDE;
|
/external/chromium_org/net/quic/ |
D | quic_connection_test.cc | 1149 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 …]
|
D | quic_sent_packet_manager.cc | 684 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/ |
D | rtp_player.cc | 205 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/ |
D | quic_test_utils.h | 450 const CongestionVector& lost_packets));
|