Home
last modified time | relevance | path

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

/system/update_engine/
Dupdate_attempter.cc1496 int64_t update_check_count_value; in DecrementUpdateCheckCount() local
1506 if (prefs_->GetInt64(kPrefsUpdateCheckCount, &update_check_count_value)) { in DecrementUpdateCheckCount()
1509 LOG(INFO) << "Update check count = " << update_check_count_value; in DecrementUpdateCheckCount()
1511 if (update_check_count_value == 0) { in DecrementUpdateCheckCount()
1519 if (update_check_count_value > 0) in DecrementUpdateCheckCount()
1520 update_check_count_value--; in DecrementUpdateCheckCount()
1522 update_check_count_value = 0; in DecrementUpdateCheckCount()
1525 if (prefs_->SetInt64(kPrefsUpdateCheckCount, update_check_count_value)) { in DecrementUpdateCheckCount()
1528 LOG(INFO) << "New update check count = " << update_check_count_value; in DecrementUpdateCheckCount()
Domaha_request_action.cc1575 int64_t update_check_count_value; in IsUpdateCheckCountBasedWaitingSatisfied() local
1579 &update_check_count_value)) { in IsUpdateCheckCountBasedWaitingSatisfied()
1589 update_check_count_value = in IsUpdateCheckCountBasedWaitingSatisfied()
1594 << update_check_count_value; in IsUpdateCheckCountBasedWaitingSatisfied()
1598 update_check_count_value)) { in IsUpdateCheckCountBasedWaitingSatisfied()
1607 if (update_check_count_value == 0) { in IsUpdateCheckCountBasedWaitingSatisfied()
1612 if (update_check_count_value < 0 || in IsUpdateCheckCountBasedWaitingSatisfied()
1613 update_check_count_value > params_->max_update_checks_allowed()) { in IsUpdateCheckCountBasedWaitingSatisfied()
1624 << update_check_count_value << " update checks per policy"; in IsUpdateCheckCountBasedWaitingSatisfied()