/external/chromium-trace/catapult/devil/devil/android/ |
D | 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)
|
D | battery_utils.py | 413 timeout_retry.WaitFor(battery_updates_disabled, wait_period=1) 434 timeout_retry.WaitFor(battery_updates_enabled, wait_period=1) 500 timeout_retry.WaitFor(device_discharged, wait_period=wait_period) 539 timeout_retry.WaitFor(device_charged, wait_period=wait_period) 565 timeout_retry.WaitFor(cool_device, wait_period=wait_period) 624 timeout_retry.WaitFor(verify_charging, wait_period=1) 690 timeout_retry.WaitFor(test_if_clear, wait_period=1)
|
D | device_utils.py | 270 if not timeout_retry.WaitFor(adb_killed, wait_period=1, max_tries=5): 274 if not timeout_retry.WaitFor(adb_started, wait_period=1, max_tries=5): 534 timeout_retry.WaitFor(device_online_with_root, wait_period=1) 816 timeout_retry.WaitFor(sd_card_ready) 817 timeout_retry.WaitFor(pm_ready) 818 timeout_retry.WaitFor(boot_completed) 820 timeout_retry.WaitFor(wifi_enabled) 845 timeout_retry.WaitFor(device_offline, wait_period=1) 1251 timeout_retry.WaitFor(all_pids_killed, wait_period=0.1) 1392 timeout_retry.WaitFor(dismiss_popups, wait_period=1) [all …]
|
D | crash_handler_devicetest.py | 58 timeout_retry.WaitFor(ready_to_crash, wait_period=2, max_tries=10)
|
D | app_ui.py | 243 return timeout_retry.WaitFor(node_found)
|
D | fastboot_utils.py | 113 timeout_retry.WaitFor(fastboot_mode, wait_period=self._FASTBOOT_WAIT_TIME)
|
D | logcat_monitor.py | 63 def WaitFor(self, success_regex, failure_regex=None, timeout=None, member in LogcatMonitor
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | 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)
|
D | cloud_storage.py | 270 py_utils.WaitFor(lambda: _AttemptPseudoLockAcquisition(pseudo_lock_path, 278 py_utils.WaitFor(lambda: _AttemptPseudoLockRelease(pseudo_lock_fd),
|
D | __init__.py | 112 def WaitFor(condition, timeout): function
|
/external/v8/src/base/platform/ |
D | semaphore.cc | 53 bool Semaphore::WaitFor(const TimeDelta& rel_time) { in WaitFor() function in v8::base::Semaphore 109 bool Semaphore::WaitFor(const TimeDelta& rel_time) { 165 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
|
D | condition-variable.cc | 81 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) { in WaitFor() function in v8::base::ConditionVariable 143 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
|
D | condition-variable.h | 60 bool WaitFor(Mutex* mutex, const TimeDelta& rel_time) V8_WARN_UNUSED_RESULT;
|
D | semaphore.h | 50 bool WaitFor(const TimeDelta& rel_time) V8_WARN_UNUSED_RESULT;
|
/external/chromium-trace/catapult/systrace/profile_chrome/ |
D | chrome_tracing_agent.py | 47 json_category_list = logmon.WaitFor( 88 self._logcat_monitor.WaitFor(self._trace_start_re, timeout=5) 101 self._trace_file = self._logcat_monitor.WaitFor(
|
D | chrome_startup_tracing_agent.py | 89 self._trace_file = self._logcat_monitor.WaitFor(
|
/external/chromium-trace/catapult/devil/devil/utils/lazy/ |
D | weak_constant.py | 36 timeout_retry.WaitFor(
|
/external/chromium-trace/catapult/devil/devil/android/sdk/ |
D | adb_compatibility_devicetest.py | 67 timeout_retry.WaitFor( 77 timeout_retry.WaitFor(
|
/external/tensorflow/tensorflow/core/common_runtime/eager/ |
D | eager_executor.h | 86 Status WaitFor(uint64 node_id);
|
D | eager_executor.cc | 65 tensorflow::Status EagerExecutor::WaitFor(tensorflow::uint64 node_id) { in WaitFor() function in tensorflow::EagerExecutor
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | blocking_counter.h | 58 inline bool WaitFor(std::chrono::milliseconds ms) { in WaitFor() function
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | timeout_retry.py | 72 def WaitFor(condition, wait_period=5, max_tries=None): function
|
/external/chromium-trace/catapult/devil/devil/android/tools/ |
D | video_recorder.py | 67 timeout_retry.WaitFor(
|
/external/tensorflow/tensorflow/cc/training/ |
D | queue_runner.cc | 107 if (!counter_->WaitFor(std::chrono::milliseconds(wait_for))) { in Start()
|
/external/v8/src/ |
D | futex-emulation.cc | 216 node->cond_.WaitFor(mutex_.Pointer(), time_until_timeout); in Wait()
|