HomeSort by relevance Sort by last modified time
    Searched refs:timeout_secs (Results 1 - 25 of 39) sorted by null

1 2

  /external/robolectric-shadows/
java-timeout 60 local timeout_secs="${1-}"
61 shift || fatal '[main]: missing argument: timeout_secs'
64 if [[ $timeout_secs = '0' ]]; then
67 elif [[ $timeout_secs = 'execute' ]]; then
70 elif (( timeout_secs < 30 )); then
80 runalarm -t "$timeout_secs" "$0" 'execute' "$@"
82 gtimeout "${timeout_secs}s" "$0" 'execute' "$@"
  /prebuilts/misc/common/robolectric/3.1.1/
java-timeout 60 local timeout_secs="${1-}"
61 shift || fatal '[main]: missing argument: timeout_secs'
64 if [[ $timeout_secs = '0' ]]; then
67 elif [[ $timeout_secs = 'execute' ]]; then
70 elif (( timeout_secs < 30 )); then
80 runalarm -t "$timeout_secs" "$0" 'execute' "$@"
82 gtimeout "${timeout_secs}s" "$0" 'execute' "$@"
  /prebuilts/misc/common/robolectric/3.4.2/
java-timeout 60 local timeout_secs="${1-}"
61 shift || fatal '[main]: missing argument: timeout_secs'
64 if [[ $timeout_secs = '0' ]]; then
67 elif [[ $timeout_secs = 'execute' ]]; then
70 elif (( timeout_secs < 30 )); then
80 runalarm -t "$timeout_secs" "$0" 'execute' "$@"
82 gtimeout "${timeout_secs}s" "$0" 'execute' "$@"
  /prebuilts/misc/common/robolectric/3.5.1/
java-timeout 60 local timeout_secs="${1-}"
61 shift || fatal '[main]: missing argument: timeout_secs'
64 if [[ $timeout_secs = '0' ]]; then
67 elif [[ $timeout_secs = 'execute' ]]; then
70 elif (( timeout_secs < 30 )); then
80 runalarm -t "$timeout_secs" "$0" 'execute' "$@"
82 gtimeout "${timeout_secs}s" "$0" 'execute' "$@"
  /prebuilts/misc/common/robolectric/3.6.1/
java-timeout 60 local timeout_secs="${1-}"
61 shift || fatal '[main]: missing argument: timeout_secs'
64 if [[ $timeout_secs = '0' ]]; then
67 elif [[ $timeout_secs = 'execute' ]]; then
70 elif (( timeout_secs < 30 )); then
80 runalarm -t "$timeout_secs" "$0" 'execute' "$@"
82 gtimeout "${timeout_secs}s" "$0" 'execute' "$@"
  /system/core/debuggerd/include/debuggerd/
client.h 33 int dump_backtrace_to_file_timeout(pid_t tid, enum DebuggerdDumpType dump_type, int timeout_secs,
  /external/autotest/client/site_tests/platform_MemoryPressure/
platform_MemoryPressure.py 17 def run_once(self, tab_open_secs=1.5, timeout_secs=180):
19 time_limit = time.time() + timeout_secs
44 (n_tabs, timeout_secs)
  /external/f2fs-tools/tools/sg_write_buffer/include/
sg_cmds_extra.h 17 /* Note: all functions that have an 'int timeout_secs' argument will use
32 * for ATA PT(16) and byte 1 for ATA PT(32). If timeout_secs <= 0 then the
46 int timeout_secs, void * dinp, void * doutp, int dlen,
58 bool cmplist, int dlist_format, int timeout_secs,
62 int timeout_secs, void * paramp, int param_len,
66 int timeout_secs, void * paramp, int param_len,
172 /* Same as sg_ll_receive_diag() but with added timeout_secs and residp
174 * and the ability to report the residual count. If timeout_secs is zero
181 int mx_resp_len, int timeout_secs, int * residp,
242 int sg_ll_unmap(int sg_fd, int group_num, int timeout_secs, void * paramp
    [all...]
sg_cmds_basic.h 44 * and the ability to report the residual count. If timeout_secs is zero
52 int mx_resp_len, int timeout_secs, int * residp,
73 /* Same as sg_ll_log_sense() apart from timeout_secs and residp. See
77 int mx_resp_len, int timeout_secs, int * residp,
114 /* Same as sg_ll_mode_sense10() apart from timeout_secs and residp. See
118 int mx_resp_len, int timeout_secs, int * residp,
sg_pt.h 133 int do_scsi_pt(struct sg_pt_base * objp, int fd, int timeout_secs,
  /external/autotest/client/cros/
cros_ui.py 67 def stop_and_wait_for_chrome_to_exit(timeout_secs=40):
71 timeout_secs is reached.
74 timeout_secs: float number of seconds to wait.
85 while time.time() - start_time < timeout_secs:
90 timeout_secs)
  /external/autotest/utils/
emulator_manager.py 50 def verify_stop(self, timeout_secs=3):
53 @param timeout_secs: Max seconds to wait for the emulator to stop.
63 if cycles >= timeout_secs*10 and pid:
147 if not self.verify_stop(timeout_secs=3):
  /external/autotest/client/site_tests/video_WebRtcSanity/
video_WebRtcSanity.py 37 def wait_test_completed(self, timeout_secs):
40 @param timeout_secs Max time to wait in seconds.
51 _test_done, timeout=timeout_secs, sleep_interval=1,
  /external/autotest/client/site_tests/audio_WebRtcAudioLoopback/
audio_WebRtcAudioLoopback.py 55 def wait_test_completed(self, timeout_secs):
58 @param timeout_secs Max time to wait in seconds.
68 _test_done, timeout=timeout_secs, sleep_interval=1,
  /external/autotest/client/site_tests/video_WebRtcCamera/
video_WebRtcCamera.py 65 def wait_test_completed(self, timeout_secs):
68 @param timeout_secs Max time to wait in seconds.
77 _test_done, timeout=timeout_secs, sleep_interval=1,
  /external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
video_WebRtcPeerConnectionWithCamera.py 39 def wait_test_completed(self, timeout_secs):
42 @param timeout_secs Max time to wait in seconds.
52 _test_done, timeout=timeout_secs, sleep_interval=1,
  /external/autotest/client/cros/audio/
cras_dbus_utils.py 71 def wait_for_nodes_changed(self, target_signal_count, timeout_secs):
75 @param timeout_secs: The timeout in seconds.
85 timeout_secs * 1000, self._timeout_quit_main_loop)
281 def wait_for_unexpected_nodes_changed(timeout_secs):
284 @param timeout_secs: Timeout in seconds for waiting.
291 CrasDBusSignalListener().wait_for_nodes_changed(1, timeout_secs)
  /external/autotest/client/profilers/pgo/
pgo.py 39 if not cros_ui.stop_and_wait_for_chrome_to_exit(timeout_secs=40):
  /external/autotest/client/common_lib/cros/
retry.py 47 def set_sigalarm_timeout(timeout_secs, default_timeout=60):
57 @param timeout_secs: The new timeout, in seconds.
61 timeout_sec_n = int(timeout_secs)
  /external/autotest/client/site_tests/cellular_GobiSwitchCarrier/
cellular_GobiSwitchCarrier.py 73 timeout_secs=90):
85 gobject.timeout_add(timeout_secs * 1000, self.timeout)
  /external/autotest/server/cros/multimedia/
audio_facade_adapter.py 215 def wait_for_unexpected_nodes_changed(self, timeout_secs):
218 @param timeout_secs: Timeout in seconds for waiting.
221 self._audio_proxy.wait_for_unexpected_nodes_changed(timeout_secs)
  /system/core/debuggerd/client/
debuggerd_client.cpp 234 int dump_backtrace_to_file_timeout(pid_t tid, DebuggerdDumpType dump_type, int timeout_secs,
240 int timeout_ms = timeout_secs > 0 ? timeout_secs * 1000 : 0;
  /external/f2fs-tools/tools/sg_write_buffer/
sg_cmds_extra.c 564 int mx_resp_len, int timeout_secs, int * residp,
586 if (timeout_secs <= 0)
587 timeout_secs = DEF_PT_TIMEOUT;
597 res = do_scsi_pt(ptvp, sg_fd, timeout_secs, verbose);
898 bool cmplst, int dlist_format, int timeout_secs,
902 dlist_format, 0, timeout_secs, paramp,
910 bool cmplst, int dlist_format, int ffmt, int timeout_secs,
914 dlist_format, ffmt, timeout_secs, paramp,
924 int timeout_secs, void * paramp, int param_len,
946 tmout = (timeout_secs > 0) ? timeout_secs : DEF_PT_TIMEOUT
    [all...]
sg_cmds_basic.c 338 int mx_resp_len, int timeout_secs, int * residp,
366 if (timeout_secs <= 0)
367 timeout_secs = DEF_PT_TIMEOUT;
378 res = do_scsi_pt(ptvp, sg_fd, timeout_secs, verbose);
466 * and the ability to report the residual count. If timeout_secs is zero
474 int mx_resp_len, int timeout_secs, int * residp,
478 timeout_secs, residp, noisy, verbose);
  /external/wpa_supplicant_8/src/utils/
os.h 101 os_time_t timeout_secs)
106 return (age.sec > timeout_secs) ||
107 (age.sec == timeout_secs && age.usec > 0);

Completed in 1259 milliseconds

1 2