Home
last modified time | relevance | path

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

/system/update_engine/cros/
Dupdate_attempter.cc1657 int64_t update_check_count_value; in DecrementUpdateCheckCount() local
1667 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) { in DecrementUpdateCheckCount()
1670 LOG(INFO) << "Update check count = " << update_check_count_value; in DecrementUpdateCheckCount()
1672 if (update_check_count_value == 0) { in DecrementUpdateCheckCount()
1680 if (update_check_count_value > 0) in DecrementUpdateCheckCount()
1681 update_check_count_value--; in DecrementUpdateCheckCount()
1683 update_check_count_value = 0; in DecrementUpdateCheckCount()
1686 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) { in DecrementUpdateCheckCount()
1689 LOG(INFO) << "New update check count = " << update_check_count_value; in DecrementUpdateCheckCount()
Domaha_request_action.cc1339 int64_t update_check_count_value; in IsUpdateCheckCountBasedWaitingSatisfied() local
1344 &update_check_count_value)) { in IsUpdateCheckCountBasedWaitingSatisfied()
1354 update_check_count_value = in IsUpdateCheckCountBasedWaitingSatisfied()
1359 << update_check_count_value; in IsUpdateCheckCountBasedWaitingSatisfied()
1363 update_check_count_value)) { in IsUpdateCheckCountBasedWaitingSatisfied()
1372 if (update_check_count_value == 0) { in IsUpdateCheckCountBasedWaitingSatisfied()
1377 if (update_check_count_value < 0 || in IsUpdateCheckCountBasedWaitingSatisfied()
1378 update_check_count_value > params->max_update_checks_allowed()) { in IsUpdateCheckCountBasedWaitingSatisfied()
1389 << update_check_count_value << " update checks per policy"; in IsUpdateCheckCountBasedWaitingSatisfied()