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

  /external/chromium_org/net/quic/congestion_control/
send_algorithm_simulator.cc 103 if (sent_packets_.empty() || AllPacketsLost()) {
104 DVLOG(1) << "No outstanding packets to cause acks. sent_packets_.size():"
105 << sent_packets_.size();
115 return sent_packets_.front().ack_time.Add(
118 for (list<SentPacket>::const_iterator it = sent_packets_.begin();
119 it != sent_packets_.end(); ++it) {
125 << " should have been found in sent_packets_";
130 for (list<SentPacket>::const_iterator it = sent_packets_.begin();
131 it != sent_packets_.end(); ++it) {
150 for (list<SentPacket>::const_iterator it = sent_packets_.begin()
    [all...]
send_algorithm_simulator.h 79 // Whether all packets in sent_packets_ are lost.
112 std::list<SentPacket> sent_packets_; member in class:net::SendAlgorithmSimulator
  /external/chromium_org/third_party/webrtc/test/
fake_network_pipe.h 75 size_t sent_packets() { return sent_packets_; }
88 size_t sent_packets_; member in class:webrtc::FakeNetworkPipe
fake_network_pipe.cc 76 sent_packets_(0),
135 if (sent_packets_ == 0)
139 (sent_packets_ + dropped_packets_);
144 if (sent_packets_ == 0)
147 return total_packet_delay_ / static_cast<int>(sent_packets_);
190 sent_packets_ += packets_to_deliver.size();
  /external/chromium_org/content/browser/renderer_host/p2p/
socket_host_udp_unittest.cc 46 : sent_packets_(sent_packets) {
93 sent_packets_->push_back(UDPPacket(address, data_vector));
169 std::deque<UDPPacket>* sent_packets_; member in class:__anon11652::FakeDatagramServerSocket
191 socket_ = new FakeDatagramServerSocket(&sent_packets_);
205 std::deque<FakeDatagramServerSocket::UDPPacket> sent_packets_; member in class:content::P2PSocketHostUdpTest
237 ASSERT_EQ(sent_packets_.size(), 3U);
238 ASSERT_EQ(sent_packets_[0].second, packet1);
239 ASSERT_EQ(sent_packets_[1].second, packet2);
240 ASSERT_EQ(sent_packets_[2].second, packet3);
255 ASSERT_EQ(sent_packets_.size(), 0U)
    [all...]
  /external/chromium_org/remoting/protocol/
connection_tester.h 96 std::vector<scoped_refptr<net::IOBuffer> > sent_packets_; member in class:remoting::protocol::DatagramConnectionTester
connection_tester.cc 147 sent_packets_.resize(message_count_);
185 sent_packets_[packets_sent_] = packet;
252 if (memcmp(read_buffer_->data(), sent_packets_[packet_id]->data(),

Completed in 199 milliseconds