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

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

Completed in 422 milliseconds