summaryrefslogtreecommitdiff
path: root/aosp/update_attempter_android.h
diff options
context:
space:
mode:
authorGabriele M <moto.falcon.git@gmail.com>2018-06-14 01:10:09 +0200
committeralk3pInjection <webmaster@raspii.tech>2023-12-27 00:35:28 +0800
commit3821b4eeb50bdf0faf99577dcb1c0e47978e5692 (patch)
tree76c39c4476df0c7ab3660541bb983267254cb12b /aosp/update_attempter_android.h
parentb52aa7706ec32556e3749284bc52f5de9ce595c7 (diff)
update_engine: Add performance modeumineko
Author: Gabriele M <moto.falcon.git@gmail.com> Date: Thu Jun 14 01:10:09 2018 +0200 update_engine: Add performance mode Allow to move update_engine from the system-background cgroup to the foreground cgroup to speed up the installation of the updates. Change-Id: Iaa531a925f9e1a26e834d7448c4755151adcfea2 Author: Luca Stefani <luca.stefani.ge1@gmail.com> Date: Mon Mar 4 14:57:28 2019 +0100 Move performance mode to top app Change-Id: I436102b4f8d046b8f3d897882613ec46acf9e2c5 luca020400: Move to TaskProfiles API Change-Id: Id7e27b0c42d80c4a3ce1dc7f8540313a7042db53
Diffstat (limited to 'aosp/update_attempter_android.h')
-rw-r--r--aosp/update_attempter_android.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/aosp/update_attempter_android.h b/aosp/update_attempter_android.h
index c2226b20..3c67941d 100644
--- a/aosp/update_attempter_android.h
+++ b/aosp/update_attempter_android.h
@@ -100,6 +100,8 @@ class UpdateAttempterAndroid
brillo::ErrorPtr* error) override;
bool resetShouldSwitchSlotOnReboot(brillo::ErrorPtr* error) override;
+ bool SetPerformanceMode(bool enable, brillo::ErrorPtr* error) override;
+
// ActionProcessorDelegate methods:
void ProcessingDone(const ActionProcessor* processor,
ErrorCode code) override;
@@ -285,6 +287,8 @@ class UpdateAttempterAndroid
metrics_utils::PersistedValue<int64_t> metric_bytes_downloaded_;
metrics_utils::PersistedValue<int64_t> metric_total_bytes_downloaded_;
+ bool performance_mode_ = false;
+
DISALLOW_COPY_AND_ASSIGN(UpdateAttempterAndroid);
};