Searched refs:update_check_count_value (Results 1 - 2 of 2) sorted by relevance

/system/update_engine/
H A Domaha_request_action.cc1269 int64_t update_check_count_value; local
1273 &update_check_count_value)) {
1283 update_check_count_value = base::RandInt(
1288 << update_check_count_value;
1290 // Write out the initial value of update_check_count_value.
1292 update_check_count_value)) {
1301 if (update_check_count_value == 0) {
1306 if (update_check_count_value < 0 ||
1307 update_check_count_value > params_->max_update_checks_allowed()) {
1318 << update_check_count_value
[all...]
H A Dupdate_attempter.cc1462 int64_t update_check_count_value; local
1472 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) {
1475 LOG(INFO) << "Update check count = " << update_check_count_value;
1477 if (update_check_count_value == 0) {
1485 if (update_check_count_value > 0)
1486 update_check_count_value--;
1488 update_check_count_value = 0;
1490 // Write out the new value of update_check_count_value.
1491 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) {
1494 LOG(INFO) << "New update check count = " << update_check_count_value;
[all...]

Completed in 36 milliseconds