Home
last modified time | relevance | path

Searched refs:pending_packets_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/remoting/protocol/
Dchannel_multiplexer.cc97 std::list<PendingPacket*> pending_packets_; member in remoting::protocol::ChannelMultiplexer::MuxChannel
210 STLDeleteElements(&pending_packets_); in ~MuxChannel()
225 pending_packets_.push_back(new PendingPacket(packet.Pass(), done_task)); in OnIncomingPacket()
257 while (buffer_len > 0 && !pending_packets_.empty()) { in DoRead()
258 DCHECK(!pending_packets_.front()->is_empty()); in DoRead()
259 int result = pending_packets_.front()->Read( in DoRead()
264 if (pending_packets_.front()->is_empty()) { in DoRead()
265 delete pending_packets_.front(); in DoRead()
266 pending_packets_.erase(pending_packets_.begin()); in DoRead()
/external/chromium_org/remoting/test/
Dfake_socket_factory.cc297 pending_packets_.push_back(packet); in ReceivePacket()
309 if (pending_packets_.size() > 1 && base::RandDouble() < out_of_order_rate_) { in DoReceivePacket()
310 std::list<PendingPacket>::iterator it = pending_packets_.begin(); in DoReceivePacket()
313 pending_packets_.erase(it); in DoReceivePacket()
315 packet = pending_packets_.front(); in DoReceivePacket()
316 pending_packets_.pop_front(); in DoReceivePacket()
Dfake_socket_factory.h114 std::list<PendingPacket> pending_packets_; variable