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()
124 uint32_t timeout = 0; in Verify() local
141 timeout = ComputeRetryTimeout(&record); in Verify()
158 if (throttle && timeout > 0) { in Verify()
159 response->SetRetryTimeout(timeout); in Verify()
303 uint32_t timeout = ComputeRetryTimeout(record); in ThrottleRequest() local
305 if (timeout > 0) { in ThrottleRequest()
307 if (timestamp < last_checked + timeout && timestamp > last_checked) { in ThrottleRequest()
309 response->SetRetryTimeout(timeout - (timestamp - last_checked)); in ThrottleRequest()
319 response->SetRetryTimeout(timeout); in ThrottleRequest()