Lines Matching full:timeout
65 uint32_t timeout = 0; in Enroll() local
82 timeout = ComputeRetryTimeout(&record); in Enroll()
87 if (throttle && timeout > 0) { in Enroll()
88 response->SetRetryTimeout(timeout); in Enroll()
137 uint32_t timeout = 0; in Verify() local
154 timeout = ComputeRetryTimeout(&record); in Verify()
170 // compute the new timeout given the incremented record in Verify()
171 if (throttle && timeout > 0) { in Verify()
172 response->SetRetryTimeout(timeout); in Verify()
296 * Calculates the timeout in milliseconds as a function of the failure
330 uint32_t timeout = ComputeRetryTimeout(record); in ThrottleRequest() local
332 if (timeout > 0) { in ThrottleRequest()
333 // we have a pending timeout in ThrottleRequest()
334 if (timestamp < last_checked + timeout && timestamp > last_checked) { in ThrottleRequest()
335 // attempt before timeout expired, return remaining time in ThrottleRequest()
336 response->SetRetryTimeout(timeout - (timestamp - last_checked)); in ThrottleRequest()
340 // reset timeout in ThrottleRequest()
346 response->SetRetryTimeout(timeout); in ThrottleRequest()