/external/chromium_org/tools/telemetry/telemetry/results/ |
progress_reporter.py | 26 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
|
gtest_progress_reporter.py | 65 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))
|
page_test_results.py | 129 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/ |
blacklist.cc | 101 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/ |
chrome_elf_init_unittest_win.cc | 152 DWORD attempt_count = blacklist::kBeaconMaxAttempts; local 154 &attempt_count); 155 ASSERT_EQ(static_cast<DWORD>(0), attempt_count);
|
chrome_elf_init_win.cc | 168 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/ |
blacklist_test.cc | 301 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/ |
download_file_unittest.cc | 91 int attempt_count) OVERRIDE {
|