diff options
author | Tao Bao <tbao@google.com> | 2019-03-14 03:25:35 +0100 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-03-14 03:25:35 +0100 |
commit | 6105a6fb6ed98252aaebc7a69539fbe63abb9afa (patch) | |
tree | ba47b0380713dcccafc37038eafe3db574c5d245 /update_verifier | |
parent | Merge "Use the package class for wipe packages" (diff) | |
parent | Merge "update_verifier: Add some missing #include's." (diff) | |
download | android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.tar android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.tar.gz android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.tar.bz2 android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.tar.lz android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.tar.xz android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.tar.zst android_bootable_recovery-6105a6fb6ed98252aaebc7a69539fbe63abb9afa.zip |
Diffstat (limited to 'update_verifier')
-rw-r--r-- | update_verifier/update_verifier.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/update_verifier/update_verifier.cpp b/update_verifier/update_verifier.cpp index 5e5eac7ab..ce93a4675 100644 --- a/update_verifier/update_verifier.cpp +++ b/update_verifier/update_verifier.cpp @@ -38,17 +38,19 @@ */ #include "update_verifier/update_verifier.h" -#include <android/os/IVold.h> #include <dirent.h> #include <errno.h> #include <fcntl.h> +#include <stdint.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> #include <algorithm> #include <future> +#include <thread> #include <android-base/file.h> #include <android-base/logging.h> @@ -57,6 +59,7 @@ #include <android-base/strings.h> #include <android-base/unique_fd.h> #include <android/hardware/boot/1.0/IBootControl.h> +#include <android/os/IVold.h> #include <binder/BinderService.h> #include <binder/Status.h> #include <cutils/android_reboot.h> |