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

  /external/chromium_org/net/quic/crypto/
strike_register.h 182 // DropOldestNode removes the oldest node in the tree and updates |horizon_|
204 // The strike register will reject nonces with internal times < |horizon_| .
205 uint32 horizon_; member in class:net::StrikeRegister
strike_register_test.cc 201 horizon_(ExternalTimeToInternal(current_time + window_secs) + 1) {
221 // We have dropped one or more nonces with a time value of |horizon_ - 1|,
224 if (nonce_time < horizon_) {
250 if (horizon_ > current_time) {
253 return 1 + min(current_time - horizon_, window_secs_);
277 horizon_ = oldest->first + 1;
285 uint32 horizon_; member in class:__anon14069::SlowStrikeRegister

Completed in 118 milliseconds