HomeSort by relevance Sort by last modified time
    Searched refs:lost_packets (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/net/quic/congestion_control/
tcp_loss_algorithm.cc 36 SequenceNumberSet lost_packets; local
50 lost_packets.insert(it->first);
62 lost_packets.insert(it->first);
72 return lost_packets;
time_loss_algorithm.cc 35 SequenceNumberSet lost_packets; local
57 lost_packets.insert(it->first);
60 return lost_packets;
send_algorithm_interface.h 47 // prior to the congestion event. |acked_packets| and |lost_packets| are
52 const CongestionMap& lost_packets) = 0;
send_algorithm_simulator.cc 178 SendAlgorithmInterface::CongestionMap lost_packets; local
191 lost_packets[last_acked_] = info;
197 lost_packets[last_acked_] = info;
210 true, bytes_in_flight_, acked_packets, lost_packets);
211 DCHECK_LE(kPacketSize * (acked_packets.size() + lost_packets.size()),
214 kPacketSize * (acked_packets.size() + lost_packets.size());
tcp_loss_algorithm_test.cc 37 SequenceNumberSet lost_packets = local
40 EXPECT_EQ(num_losses, lost_packets.size());
42 EXPECT_TRUE(ContainsKey(lost_packets, losses_expected[i]));
time_loss_algorithm_test.cc 37 SequenceNumberSet lost_packets = local
40 EXPECT_EQ(num_losses, lost_packets.size());
42 EXPECT_TRUE(ContainsKey(lost_packets, losses_expected[i]));
pacing_sender.cc 35 const CongestionMap& lost_packets) {
40 rtt_updated, bytes_in_flight, acked_packets, lost_packets);
fix_rate_sender.cc 54 const CongestionMap& lost_packets) {
fix_rate_sender.h 36 const CongestionMap& lost_packets) OVERRIDE;
pacing_sender.h 40 const CongestionMap& lost_packets) OVERRIDE;
tcp_cubic_sender_test.cc 85 SendAlgorithmInterface::CongestionMap lost_packets; local
91 true, bytes_in_flight_, acked_packets, lost_packets);
98 SendAlgorithmInterface::CongestionMap lost_packets; local
101 lost_packets[acked_sequence_number_] = standard_packet_;
104 false, bytes_in_flight_, acked_packets, lost_packets);
111 SendAlgorithmInterface::CongestionMap lost_packets; local
112 lost_packets[sequence_number] = standard_packet_;
114 false, bytes_in_flight_, acked_packets, lost_packets);
tcp_cubic_sender.h 50 const CongestionMap& lost_packets) OVERRIDE;
tcp_cubic_sender.cc 80 const CongestionMap& lost_packets) {
87 for (CongestionMap::const_iterator it = lost_packets.begin();
88 it != lost_packets.end(); ++it) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
neteq_opus_fec_quality_test.cc 164 static int packets = 0, lost_packets = 0; local
166 if (lost_packets * 100 < actual_loss_rate_ * packets) {
167 lost_packets++;
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
rtp_player.cc 206 int RegisterSsrc(uint32_t ssrc, LostPackets* lost_packets, Clock* clock) {
213 new Handler(ssrc, payload_types_, lost_packets));
273 LostPackets* lost_packets)
281 lost_packets_(lost_packets) {
282 assert(lost_packets);
  /external/chromium_org/net/quic/
quic_connection_test.cc 1101 SequenceNumberSet lost_packets; local
1187 SequenceNumberSet lost_packets; local
1592 SequenceNumberSet lost_packets; local
1858 SequenceNumberSet lost_packets; local
1883 SequenceNumberSet lost_packets; local
1921 SequenceNumberSet lost_packets; local
2035 SequenceNumberSet lost_packets; local
2487 SequenceNumberSet lost_packets; local
3092 SequenceNumberSet lost_packets; local
3559 SequenceNumberSet lost_packets; local
3750 SequenceNumberSet lost_packets; local
3774 SequenceNumberSet lost_packets; local
3850 SequenceNumberSet lost_packets; local
    [all...]
quic_sent_packet_manager.cc 599 SequenceNumberSet lost_packets = local
604 for (SequenceNumberSet::const_iterator it = lost_packets.begin();
605 it != lost_packets.end(); ++it) {
  /external/chromium_org/net/quic/test_tools/
quic_test_utils.h 450 const CongestionMap& lost_packets));

Completed in 1534 milliseconds