Searched defs:attempt_count (Results 1 - 4 of 4) sorted by path

/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/
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_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);

Completed in 1483 milliseconds