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

  /external/chromium/net/base/
backoff_entry.cc 100 int effective_failure_count = local
102 if (effective_failure_count == 0) {
110 // effective_failure_count - 1) * Uniform(1 - jitter_factor, 1]
112 delay *= pow(policy_->multiply_factor, effective_failure_count - 1);
  /external/chromium_org/net/base/
backoff_entry.cc 118 int effective_failure_count = local
122 // the effective_failure_count always being one greater than when it's false.
124 ++effective_failure_count;
126 if (effective_failure_count == 0) {
134 // effective_failure_count - 1) * Uniform(1 - jitter_factor, 1]
136 delay *= pow(policy_->multiply_factor, effective_failure_count - 1);

Completed in 249 milliseconds