Searched refs:sent_packets_ (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/webrtc/test/
H A Dfake_network_pipe.h75 size_t sent_packets() { return sent_packets_; }
88 size_t sent_packets_; member in class:webrtc::FakeNetworkPipe
H A Dfake_network_pipe.cc81 sent_packets_(0),
140 if (sent_packets_ == 0)
144 (sent_packets_ + dropped_packets_);
149 if (sent_packets_ == 0)
152 return total_packet_delay_ / static_cast<int>(sent_packets_);
201 sent_packets_ += packets_to_deliver.size();
/external/chromium_org/content/browser/renderer_host/p2p/
H A Dsocket_host_udp_unittest.cc46 : sent_packets_(sent_packets) {
93 sent_packets_->push_back(UDPPacket(address, data_vector));
169 std::deque<UDPPacket>* sent_packets_; member in class:__anon7342::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_
[all...]
/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.cc144 if (sent_packets_.empty()) {
189 for (list<SentPacket>::const_iterator it = sent_packets_.begin();
190 it != sent_packets_.end(); ++it) {
226 for (list<SentPacket>::const_iterator it = sent_packets_.begin();
227 it != sent_packets_.end() && it->sequence_number < next_acked; ++it) {
254 // Some entries may be missing from the sent_packets_ array, if they were
257 list<SentPacket>::iterator it = sent_packets_.begin();
265 DCHECK(it != sent_packets_.end());
280 // This packet has been acked or lost, remove it from sent_packets_.
282 sent_packets_
[all...]
H A Dsend_algorithm_simulator.h215 std::list<SentPacket> sent_packets_; member in class:net::SendAlgorithmSimulator
/external/chromium_org/remoting/protocol/
H A Dconnection_tester.h96 std::vector<scoped_refptr<net::IOBuffer> > sent_packets_; member in class:remoting::protocol::DatagramConnectionTester
H A Dconnection_tester.cc147 sent_packets_.resize(message_count_);
185 sent_packets_[packets_sent_] = packet;
252 if (memcmp(read_buffer_->data(), sent_packets_[packet_id]->data(),

Completed in 609 milliseconds