Home
last modified time | relevance | path

Searched refs:max_attempts (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/results/
Dgtest_progress_reporter.py65 def WillAttemptPageRun(self, page_test_results, attempt_count, max_attempts): argument
67 page_test_results, attempt_count, max_attempts)
72 attempt_count, max_attempts))
Dprogress_reporter.py26 def WillAttemptPageRun(self, page_test_results, attempt_count, max_attempts): argument
Dpage_test_results.py129 def WillAttemptPageRun(self, attempt_count, max_attempts): argument
142 self, attempt_count, max_attempts)
/external/chromium_org/build/android/pylib/
Dchrome_test_server_spawner.py52 def _WaitUntil(predicate, max_attempts=5): argument
59 for _ in xrange(1, max_attempts):
251 _WaitUntil(lambda: self.stop_flag, max_attempts=sys.maxint)
/external/lldb/test/pexpect-2.4/examples/
Dhive.py379 def resync (hive, hive_names, timeout=2, max_attempts=5): argument
392 for attempts in xrange(0, max_attempts):
/external/chromium_org/tools/telemetry/telemetry/page/
Dpage_runner.py244 max_attempts = test.attempts
246 while attempt_num < max_attempts:
249 results.WillAttemptPageRun(attempt_num, max_attempts)
290 if attempt_num == max_attempts:
/external/chromium_org/chrome/installer/mini_installer/
Dmini_installer.cc565 int max_attempts = 10; in CreateWorkDir() local
566 while (max_attempts--) { in CreateWorkDir()