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

1 2

  /external/chromium-trace/catapult/common/py_utils/py_utils/
py_utils_unittest.py 31 self.assertTrue(py_utils.WaitFor(ReturnTrue, .1))
38 py_utils.WaitFor(ReturnFalse, .1)
48 self.assertTrue(py_utils.WaitFor(ReturnCounterBasedValue, .5))
51 self.assertTrue(py_utils.WaitFor(lambda: True, .1))
55 py_utils.WaitFor(lambda: False, .1)
__init__.py 112 def WaitFor(condition, timeout):
cloud_storage.py 265 py_utils.WaitFor(lambda: _AttemptPseudoLockAcquisition(pseudo_lock_path,
273 py_utils.WaitFor(lambda: _AttemptPseudoLockRelease(pseudo_lock_fd),
  /external/drm_hwcomposer/tests/
queue_worker_test.cpp 67 bool WaitFor(int val, int timeout_ms = kTimeoutMs) {
90 ASSERT_TRUE(WaitFor(1));
98 ASSERT_TRUE(WaitFor(i));
108 ASSERT_TRUE(WaitFor(100));
116 ASSERT_TRUE(WaitFor(1));
141 ASSERT_TRUE(WaitFor(expected_value));
170 ASSERT_TRUE(WaitFor(1));
180 ASSERT_TRUE(WaitFor(1));
187 ASSERT_TRUE(WaitFor(2));
194 ASSERT_TRUE(WaitFor(3))
    [all...]
  /external/chromium-trace/catapult/devil/devil/android/
logcat_monitor_test.py 70 actual_match = test_log.WaitFor(r'.*(fatal|error) logcat monitor.*', None)
85 actual_match = test_log.WaitFor(
110 actual_match = test_log.WaitFor(r'.*last line.*', None)
121 test_log.WaitFor(r'.*last line.*', None)
145 test_log.WaitFor(r'.*last line.*', None)
157 test_log.WaitFor(r'.*last line.*', None)
172 test_log.WaitFor(r'.*last line.*', None)
187 test_log.WaitFor(r'.*last line.*', None)
205 test_log.WaitFor(r'.*last line.*', None)
crash_handler_devicetest.py 58 timeout_retry.WaitFor(ready_to_crash, wait_period=2, max_tries=10)
device_utils.py 244 if not timeout_retry.WaitFor(adb_killed, wait_period=1, max_tries=5):
248 if not timeout_retry.WaitFor(adb_started, wait_period=1, max_tries=5):
494 timeout_retry.WaitFor(device_online_with_root, wait_period=1)
735 timeout_retry.WaitFor(sd_card_ready)
736 timeout_retry.WaitFor(pm_ready)
737 timeout_retry.WaitFor(boot_completed)
739 timeout_retry.WaitFor(wifi_enabled)
764 timeout_retry.WaitFor(device_offline, wait_period=1)
    [all...]
app_ui.py 243 return timeout_retry.WaitFor(node_found)
fastboot_utils.py 113 timeout_retry.WaitFor(fastboot_mode, wait_period=self._FASTBOOT_WAIT_TIME)
logcat_monitor.py 63 def WaitFor(self, success_regex, failure_regex=None, timeout=None,
87 LogcatMonitorCommandError when calling |WaitFor| while not recording
92 'Must be recording logcat when calling |WaitFor|',
  /external/libmojo/third_party/catapult/devil/devil/android/
logcat_monitor_test.py 70 actual_match = test_log.WaitFor(r'.*(fatal|error) logcat monitor.*', None)
85 actual_match = test_log.WaitFor(
110 actual_match = test_log.WaitFor(r'.*last line.*', None)
121 test_log.WaitFor(r'.*last line.*', None)
145 test_log.WaitFor(r'.*last line.*', None)
157 test_log.WaitFor(r'.*last line.*', None)
172 test_log.WaitFor(r'.*last line.*', None)
187 test_log.WaitFor(r'.*last line.*', None)
205 test_log.WaitFor(r'.*last line.*', None)
app_ui.py 243 return timeout_retry.WaitFor(node_found)
  /external/tensorflow/tensorflow/core/lib/core/
blocking_counter.h 58 inline bool WaitFor(std::chrono::milliseconds ms) {
  /external/v8/src/base/platform/
condition-variable.h 28 // on a Mutex first. The |Wait()| and |WaitFor()| operations atomically release
58 // is reacquired and |WaitFor()| exits. Returns true if the condition variable
60 bool WaitFor(Mutex* mutex, const TimeDelta& rel_time) WARN_UNUSED_RESULT;
semaphore.h 50 bool WaitFor(const TimeDelta& rel_time) WARN_UNUSED_RESULT;
condition-variable.cc 81 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
132 bool WaitFor(DWORD timeout_ms) {
280 while (!event->WaitFor(INFINITE)) {
292 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
306 result = event->WaitFor(INFINITE - 1);
312 result = event->WaitFor((msec < 0) ? 0 : static_cast<DWORD>(msec));
semaphore.cc 53 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
109 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
165 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
adb_compatibility_devicetest.py 48 timeout_retry.WaitFor(
58 timeout_retry.WaitFor(
  /external/chromium-trace/catapult/systrace/profile_chrome/
chrome_tracing_agent.py 46 json_category_list = logmon.WaitFor(
87 self._logcat_monitor.WaitFor(self._trace_start_re, timeout=5)
100 self._trace_file = self._logcat_monitor.WaitFor(
chrome_startup_tracing_agent.py 88 self._trace_file = self._logcat_monitor.WaitFor(
  /external/chromium-trace/catapult/devil/devil/android/sdk/
adb_compatibility_devicetest.py 67 timeout_retry.WaitFor(
77 timeout_retry.WaitFor(
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry.py 72 def WaitFor(condition, wait_period=5, max_tries=None):
  /external/libmojo/third_party/catapult/devil/devil/utils/
timeout_retry.py 72 def WaitFor(condition, wait_period=5, max_tries=None):
  /external/chromium-trace/catapult/common/battor/battor/
battor_wrapper.py 223 py_utils.WaitFor(lambda: self.GetShellReturnCode() != None, timeout)
267 py_utils.WaitFor(lambda: self.GetShellReturnCode() != None, timeout)
  /external/chromium-trace/catapult/devil/devil/android/tools/
video_recorder.py 67 timeout_retry.WaitFor(

Completed in 403 milliseconds

1 2