Home
last modified time | relevance | path

Searched refs:undecryptable_packets_ (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/net/quic/
Dquic_connection.cc260 STLDeleteElements(&undecryptable_packets_); in ~QuicConnection()
1117 undecryptable_packets_.size() < kMaxUndecryptablePackets) { in ProcessUdpPacket()
1671 undecryptable_packets_.push_back(packet.Clone()); in QueueUndecryptablePacket()
1675 if (undecryptable_packets_.empty() || encryption_level_ == ENCRYPTION_NONE) { in MaybeProcessUndecryptablePackets()
1679 while (connected_ && !undecryptable_packets_.empty()) { in MaybeProcessUndecryptablePackets()
1681 QuicEncryptedPacket* packet = undecryptable_packets_.front(); in MaybeProcessUndecryptablePackets()
1690 undecryptable_packets_.pop_front(); in MaybeProcessUndecryptablePackets()
1701 for (size_t i = 0; i < undecryptable_packets_.size(); ++i) { in MaybeProcessUndecryptablePackets()
1705 STLDeleteElements(&undecryptable_packets_); in MaybeProcessUndecryptablePackets()
Dquic_connection.h709 std::deque<QuicEncryptedPacket*> undecryptable_packets_; variable