Home | History | Annotate | Download | only in notifier

Lines Matching refs:delay

30   // reset the delay.
32 delay = base::TimeDelta();
126 pending_registrations[model_type].delay = status.delay;
181 // delay = max(0, (now - last request) + next_delay)
182 status->delay =
186 base::TimeDelta delay =
187 (status->delay <= base::TimeDelta()) ?
188 base::TimeDelta() : status->delay;
191 << delay.InMilliseconds() << " ms";
194 delay, status, &RegistrationManager::RegistrationStatus::DoRegister);
205 VLOG(2) << "New next delay for "
211 status->delay = base::TimeDelta();