Home
last modified time | relevance | path

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

/external/chromium_org/net/quic/
Dquic_sent_packet_manager.cc644 SendAlgorithmInterface::SentPacketsMap::iterator history_it = in MaybeUpdateRTT() local
647 if (history_it == packet_history_map_.end()) { in MaybeUpdateRTT()
652 history_it->second->send_timestamp()); in MaybeUpdateRTT()
746 SendAlgorithmInterface::SentPacketsMap::iterator history_it = in CleanupPacketHistory() local
748 for (; history_it != packet_history_map_.end(); ++history_it) { in CleanupPacketHistory()
749 if (now.Subtract(history_it->second->send_timestamp()) <= kHistoryPeriod) { in CleanupPacketHistory()
753 if (ContainsKey(pending_packets_, history_it->first)) { in CleanupPacketHistory()
756 delete history_it->second; in CleanupPacketHistory()
757 packet_history_map_.erase(history_it); in CleanupPacketHistory()
758 history_it = packet_history_map_.begin(); in CleanupPacketHistory()