Searched defs:backoff (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dprofiler.cc161 const double kMaxBackoffSecs = 24*60*60; // Max backoff time.
172 double backoff = 1.0; local
180 uint64_t delay_secs = profiler->options_.GetPeriodS() * backoff;
196 // Expand the backoff by its coefficient, but don't go beyond the max.
197 backoff = std::min(backoff * profiler->options_.GetBackoffCoefficient(), kMaxBackoffSecs);

Completed in 51 milliseconds