Home
last modified time | relevance | path

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

/external/linux-kselftest/tools/testing/selftests/powerpc/eeh/
Deeh-functions.sh58 max_wait=30
60 for i in `seq 0 ${max_wait}` ; do
64 echo "$dev, waited $i/${max_wait}"
/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.py144 def CalculateWaitForRetry(retry_attempt, max_wait=60): argument
163 return max(1, min(wait_time, max_wait))
Dutil_test.py93 self.assertAlmostEqual(10, util.CalculateWaitForRetry(5, max_wait=10))
Dhttp_wrapper.py310 retry_args.num_retries, max_wait=retry_args.max_retry_wait))
/external/autotest/server/
Dsite_utils.py751 def wait_for_idle_duts(duts, afe, max_wait=IDLE_DUT_WAIT_TIMEOUT): argument
769 if (time.time() - start_time) > max_wait:
790 max_wait=IDLE_DUT_WAIT_TIMEOUT): argument
809 yield wait_for_idle_duts(locked_duts, afe, max_wait)
/external/rust/crates/tokio/src/io/driver/
Dmod.rs148 fn turn(&mut self, max_wait: Option<Duration>) -> io::Result<()> { in turn()
162 match self.poll.poll(&mut events, max_wait) { in turn()
/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()