Searched refs:attempt_count (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/tools/telemetry/telemetry/results/
H A Dprogress_reporter.py26 def WillAttemptPageRun(self, page_test_results, attempt_count, max_attempts):
29 attempt_count: The current attempt number, start at 1
30 (attempt_count == 1 for the first attempt, 2 for second
H A Dgtest_progress_reporter.py65 def WillAttemptPageRun(self, page_test_results, attempt_count, max_attempts):
67 page_test_results, attempt_count, max_attempts)
69 if attempt_count != 1:
72 attempt_count, max_attempts))
H A Dpage_test_results.py129 def WillAttemptPageRun(self, attempt_count, max_attempts):
136 attempt_count: The current attempt number, start at 1
137 (attempt_count == 1 for the first attempt, 2 for second
142 self, attempt_count, max_attempts)
/external/chromium_org/chrome_elf/blacklist/
H A Dblacklist.cc101 DWORD attempt_count = 0; local
102 DWORD attempt_count_size = sizeof(attempt_count);
107 reinterpret_cast<LPBYTE>(&attempt_count),
111 attempt_count = 0;
115 ++attempt_count;
116 SetDWValue(key, blacklist::kBeaconAttemptCount, attempt_count);
118 if (attempt_count >= blacklist::kBeaconMaxAttempts) {
/external/chromium_org/chrome/browser/
H A Dchrome_elf_init_unittest_win.cc152 DWORD attempt_count = blacklist::kBeaconMaxAttempts; local
154 &attempt_count);
155 ASSERT_EQ(static_cast<DWORD>(0), attempt_count);
H A Dchrome_elf_init_win.cc168 DWORD attempt_count = 0; local
170 &attempt_count);
171 UMA_HISTOGRAM_COUNTS_100("Blacklist.RetryAttempts.Success", attempt_count);
/external/chromium_org/chrome_elf/blacklist/test/
H A Dblacklist_test.cc301 DWORD attempt_count = 0; local
303 &attempt_count);
304 EXPECT_EQ(attempt_count, blacklist::kBeaconMaxAttempts);
330 DWORD attempt_count = blacklist::kBeaconMaxAttempts; local
332 &attempt_count);
333 EXPECT_EQ(static_cast<DWORD>(0), attempt_count);
/external/chromium_org/content/browser/download/
H A Ddownload_file_unittest.cc91 int attempt_count) OVERRIDE {

Completed in 8985 milliseconds