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

  /prebuilts/misc/common/robolectric/
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 36 int dump_backtrace_to_file_timeout(pid_t tid, int fd, 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/autotest/client/site_tests/video_WebRtcSanity/
video_WebRtcSanity.py 36 def wait_test_completed(self, timeout_secs):
39 @param timeout_secs Max time to wait in seconds.
50 _test_done, timeout=timeout_secs, sleep_interval=1,
  /external/autotest/client/cros/
cros_ui.py 68 def stop_and_wait_for_chrome_to_exit(timeout_secs=40):
72 timeout_secs is reached.
75 timeout_secs: float number of seconds to wait.
86 while time.time() - start_time < timeout_secs:
91 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_WebRtcCamera/
video_WebRtcCamera.py 64 def wait_test_completed(self, timeout_secs):
67 @param timeout_secs Max time to wait in seconds.
76 _test_done, timeout=timeout_secs, sleep_interval=1,
  /external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
video_WebRtcPeerConnectionWithCamera.py 38 def wait_test_completed(self, timeout_secs):
41 @param timeout_secs Max time to wait in seconds.
51 _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 41 def set_sigalarm_timeout(timeout_secs, default_timeout=60):
51 @param timeout_secs: The new timeout, in seconds.
55 timeout_sec_n = int(timeout_secs)
  /external/autotest/client/site_tests/network_SwitchCarrier/
network_SwitchCarrier.py 73 timeout_secs=90):
85 gobject.timeout_add(timeout_secs * 1000, self.timeout)
  /external/autotest/server/cros/multimedia/
audio_facade_adapter.py 204 def wait_for_unexpected_nodes_changed(self, timeout_secs):
207 @param timeout_secs: Timeout in seconds for waiting.
210 self._audio_proxy.wait_for_unexpected_nodes_changed(timeout_secs)
  /system/core/debuggerd/client/
debuggerd_client.cpp 230 int dump_backtrace_to_file_timeout(pid_t tid, int fd, int timeout_secs) {
235 int timeout_ms = timeout_secs > 0 ? timeout_secs * 1000 : 0;
  /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);
  /external/autotest/server/cros/
goofy_client.py 186 timeout_secs = timeout_min * 60
189 if time.time() - current_time > timeout_secs:
  /external/openssh/
clientloop.c 598 int timeout_secs; local
647 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */
649 timeout_secs = options.server_alive_interval;
653 timeout_secs = MIN(timeout_secs, packet_get_rekey_timeout());
656 timeout_secs = MIN(timeout_secs,
658 if (timeout_secs < 0)
659 timeout_secs = 0;
662 timeout_secs = MIN(timeout_secs, (int)minwait_secs)
    [all...]
  /external/autotest/client/cros/multimedia/
audio_facade_native.py 332 def wait_for_unexpected_nodes_changed(self, timeout_secs):
335 @param timeout_secs: Timeout in seconds for waiting.
338 cras_dbus_utils.wait_for_unexpected_nodes_changed(timeout_secs)

Completed in 601 milliseconds