summaryrefslogtreecommitdiffstats
path: root/install/include/private/setup_commands.h
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-04-30 23:49:03 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-04-30 23:49:03 +0200
commitb5fe2dd00c2f04e02d3598e7956eb1374430088f (patch)
tree13932498e10ef237aee01eeaed417d377f1a9816 /install/include/private/setup_commands.h
parentMerge "tests: Merge recovery_component_test into recovery_unit_test." (diff)
parentinstall: Install functions return InstallResult. (diff)
downloadandroid_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.tar
android_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.tar.gz
android_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.tar.bz2
android_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.tar.lz
android_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.tar.xz
android_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.tar.zst
android_bootable_recovery-b5fe2dd00c2f04e02d3598e7956eb1374430088f.zip
Diffstat (limited to 'install/include/private/setup_commands.h')
-rw-r--r--install/include/private/setup_commands.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/include/private/setup_commands.h b/install/include/private/setup_commands.h
index 7fdc741d6..dcff76112 100644
--- a/install/include/private/setup_commands.h
+++ b/install/include/private/setup_commands.h
@@ -27,13 +27,13 @@
// |zip| located at |package|. Stores the command line that should be called into |cmd|. The
// |status_fd| is the file descriptor the child process should use to report back the progress of
// the update.
-int SetUpNonAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int retry_count,
- int status_fd, std::vector<std::string>* cmd);
+bool SetUpNonAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int retry_count,
+ int status_fd, std::vector<std::string>* cmd);
// Sets up the commands for an A/B update. Extracts the needed entries from the open zip archive
// |zip| located at |package|. Stores the command line that should be called into |cmd|. The
// |status_fd| is the file descriptor the child process should use to report back the progress of
// the update. Note that since this applies to the sideloading flow only, it takes one less
// parameter |retry_count| than the non-A/B version.
-int SetUpAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int status_fd,
- std::vector<std::string>* cmd);
+bool SetUpAbUpdateCommands(const std::string& package, ZipArchiveHandle zip, int status_fd,
+ std::vector<std::string>* cmd);