Home
last modified time | relevance | path

Searched refs:max_wait (Results 1 – 6 of 6) sorted by relevance

/external/libese/libese-hw/nxp/pn80t/
Dcommon.c210 uint32_t max_wait = 0; in nxp_pn80t_send_cooldown() local
229 if (cooldown > max_wait) { in nxp_pn80t_send_cooldown()
230 max_wait = cooldown; in nxp_pn80t_send_cooldown()
243 return max_wait; in nxp_pn80t_send_cooldown()
/external/python/apitools/apitools/base/py/
Dutil.py138 def CalculateWaitForRetry(retry_attempt, max_wait=60): argument
157 return max(1, min(wait_time, max_wait))
Dutil_test.py90 self.assertAlmostEqual(10, util.CalculateWaitForRetry(5, max_wait=10))
Dhttp_wrapper.py305 retry_args.num_retries, max_wait=retry_args.max_retry_wait))
/external/autotest/server/
Dsite_utils.py786 def wait_for_idle_duts(duts, afe, max_wait=IDLE_DUT_WAIT_TIMEOUT): argument
804 if (time.time() - start_time) > max_wait:
825 max_wait=IDLE_DUT_WAIT_TIMEOUT): argument
844 yield wait_for_idle_duts(locked_duts, afe, max_wait)
/external/libchrome/base/synchronization/
Dwaitable_event_posix.cc220 const TimeDelta max_wait(end_time - current_time); in TimedWaitUntil() local
221 sw.cv()->TimedWait(max_wait); in TimedWaitUntil()