HomeSort by relevance Sort by last modified time
    Searched full:last_acked_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/quic/congestion_control/
send_algorithm_simulator.cc 35 last_acked_(0),
114 if (next_acked_ - last_acked_ == 1) {
142 if (next_acked_ == last_acked_) {
148 next_acked_ = last_acked_;
163 if (packets_lost || (next_acked_ - last_acked_) % 2 == 0) {
172 << " last_acked:" << last_acked_; local
176 DCHECK_LT(last_acked_, next_acked_);
182 while (last_acked_ < next_acked_) {
183 ++last_acked_;
188 if (sent_packets_.front().sequence_number > last_acked_) {
    [all...]
send_algorithm_simulator.h 104 QuicPacketSequenceNumber last_acked_; member in class:net::SendAlgorithmSimulator

Completed in 45 milliseconds