summaryrefslogtreecommitdiffstats
path: root/install/include/private
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2019-04-30 09:25:41 +0200
committerTao Bao <tbao@google.com>2019-04-30 22:58:03 +0200
commit36c7276cb29c0990933de6da8dbcf7ea2dc2741d (patch)
tree34fc209da376e6237f12c976629e319583ff528b /install/include/private
parentMerge "tests: Merge recovery_component_test into recovery_unit_test." (diff)
downloadandroid_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.tar
android_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.tar.gz
android_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.tar.bz2
android_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.tar.lz
android_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.tar.xz
android_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.tar.zst
android_bootable_recovery-36c7276cb29c0990933de6da8dbcf7ea2dc2741d.zip
Diffstat (limited to 'install/include/private')
-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);