Lines Matching refs:timeout
52 uint32_t timeout = 0; in Enroll() local
69 timeout = ComputeRetryTimeout(&record); in Enroll()
74 if (throttle && timeout > 0) { in Enroll()
75 response->SetRetryTimeout(timeout); in Enroll()
126 uint32_t timeout = 0; in Verify() local
143 timeout = ComputeRetryTimeout(&record); in Verify()
161 if (throttle && timeout > 0) { in Verify()
162 response->SetRetryTimeout(timeout); in Verify()
287 uint32_t timeout = ComputeRetryTimeout(record); in ThrottleRequest() local
289 if (timeout > 0) { in ThrottleRequest()
291 if (timestamp < last_checked + timeout && timestamp > last_checked) { in ThrottleRequest()
293 response->SetRetryTimeout(timeout - (timestamp - last_checked)); in ThrottleRequest()
303 response->SetRetryTimeout(timeout); in ThrottleRequest()