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

  /external/chromium_org/net/quic/
quic_sent_entropy_manager.cc 27 packets_entropy_.insert(
39 packets_entropy_.find(sequence_number);
40 if (it == packets_entropy_.end()) {
53 packets_entropy_.find(sequence_number);
54 if (entropy_it == packets_entropy_.end()) {
62 entropy_it = packets_entropy_.find(*it);
63 DCHECK(entropy_it != packets_entropy_.end());
74 if (packets_entropy_.empty()) {
77 SentEntropyMap::iterator it = packets_entropy_.begin();
79 packets_entropy_.erase(it)
    [all...]
quic_sent_entropy_manager.h 39 // Removes not required entries from |packets_entropy_| before
50 SentEntropyMap packets_entropy_; member in class:net::QuicSentEntropyManager
quic_received_packet_manager.cc 116 packets_entropy_.insert(make_pair(sequence_number, entropy_hash));
138 packets_entropy_.upper_bound(sequence_number);
143 // LOG_IF_EVERY_N_SEC(DFATAL, it == packets_entropy_.end(), 10)
144 LOG_IF(DFATAL, it == packets_entropy_.end())
151 for (; it != packets_entropy_.end(); ++it) {
170 packets_entropy_.lower_bound(peer_least_unacked);
172 for (; it != packets_entropy_.end(); ++it) {
176 packets_entropy_.erase(
177 packets_entropy_.begin(),
178 packets_entropy_.lower_bound
    [all...]
quic_received_packet_manager.h 120 ReceivedEntropyMap packets_entropy_; member in class:net::QuicReceivedPacketManager

Completed in 70 milliseconds