summaryrefslogtreecommitdiffstats
path: root/updater/include
diff options
context:
space:
mode:
authorTreeHugger Robot <treehugger-gerrit@google.com>2020-05-13 20:25:35 +0200
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-13 20:25:35 +0200
commitfbe98bb122353c47816d764d578c2c30cb5167d6 (patch)
tree0701b5c1905aa5a06082de62e7a5c1a61d8305c3 /updater/include
parentMerge "Allos IsUsbConnected() to be overridden" am: 54e28fed8a am: bc3a63e4a4 (diff)
parentMerge changes from topic "nonab_on_vab_r" into rvc-dev (diff)
downloadandroid_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.tar
android_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.tar.gz
android_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.tar.bz2
android_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.tar.lz
android_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.tar.xz
android_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.tar.zst
android_bootable_recovery-fbe98bb122353c47816d764d578c2c30cb5167d6.zip
Diffstat (limited to 'updater/include')
-rw-r--r--updater/include/updater/simulator_runtime.h1
-rw-r--r--updater/include/updater/updater_runtime.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/updater/include/updater/simulator_runtime.h b/updater/include/updater/simulator_runtime.h
index 9f7847b4f..fa878db33 100644
--- a/updater/include/updater/simulator_runtime.h
+++ b/updater/include/updater/simulator_runtime.h
@@ -53,6 +53,7 @@ class SimulatorRuntime : public UpdaterRuntimeInterface {
bool MapPartitionOnDeviceMapper(const std::string& partition_name, std::string* path) override;
bool UnmapPartitionOnDeviceMapper(const std::string& partition_name) override;
bool UpdateDynamicPartitions(const std::string_view op_list_value) override;
+ std::string AddSlotSuffix(const std::string_view arg) const override;
private:
std::string FindBlockDeviceName(const std::string_view name) const override;
diff --git a/updater/include/updater/updater_runtime.h b/updater/include/updater/updater_runtime.h
index 8fc066f6a..b943dfcf1 100644
--- a/updater/include/updater/updater_runtime.h
+++ b/updater/include/updater/updater_runtime.h
@@ -56,6 +56,7 @@ class UpdaterRuntime : public UpdaterRuntimeInterface {
bool MapPartitionOnDeviceMapper(const std::string& partition_name, std::string* path) override;
bool UnmapPartitionOnDeviceMapper(const std::string& partition_name) override;
bool UpdateDynamicPartitions(const std::string_view op_list_value) override;
+ std::string AddSlotSuffix(const std::string_view arg) const override;
private:
struct selabel_handle* sehandle_{ nullptr };