OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:max_wait
(Results
1 - 6
of
6
) sorted by null
/external/libese/libese-hw/nxp/pn80t/
common.c
210
uint32_t
max_wait
= 0;
local
229
if (cooldown >
max_wait
) {
230
max_wait
= cooldown;
243
return
max_wait
;
/external/python/apitools/apitools/base/py/
util.py
138
def CalculateWaitForRetry(retry_attempt,
max_wait
=60):
147
max_wait
: Upper bound for wait time [seconds].
157
return max(1, min(wait_time,
max_wait
))
util_test.py
90
self.assertAlmostEqual(10, util.CalculateWaitForRetry(5,
max_wait
=10))
http_wrapper.py
305
retry_args.num_retries,
max_wait
=retry_args.max_retry_wait))
/external/autotest/server/
site_utils.py
786
def wait_for_idle_duts(duts, afe,
max_wait
=IDLE_DUT_WAIT_TIMEOUT):
791
@param
max_wait
: Max wait time in seconds to wait for duts to be idle.
794
go idle within
max_wait
.
804
if (time.time() - start_time) >
max_wait
:
825
max_wait
=IDLE_DUT_WAIT_TIMEOUT):
831
@param
max_wait
: Max wait time in seconds to wait for duts to be idle.
844
yield wait_for_idle_duts(locked_duts, afe,
max_wait
)
[
all
...]
/external/libchrome/base/synchronization/
waitable_event_posix.cc
220
const TimeDelta
max_wait
(end_time - current_time);
221
sw.cv()->TimedWait(
max_wait
);
Completed in 404 milliseconds