summaryrefslogtreecommitdiffstats
path: root/update_verifier/update_verifier.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-03-17 00:15:44 +0100
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-03-17 00:15:44 +0100
commit303257a3d31f7e7e895aa5be06692fbe05c799f3 (patch)
treefe161893ac9aa59913a4d11ff75f5d983b0b7ca3 /update_verifier/update_verifier.cpp
parentSnap for 5374457 from 223879ce4b5dde2da96c1d1aaef91e7582981ed3 to qt-release (diff)
parentMerge "Implement FilePackage class" am: 698dc08561 am: cd73207f50 (diff)
downloadandroid_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.tar
android_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.tar.gz
android_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.tar.bz2
android_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.tar.lz
android_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.tar.xz
android_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.tar.zst
android_bootable_recovery-303257a3d31f7e7e895aa5be06692fbe05c799f3.zip
Diffstat (limited to 'update_verifier/update_verifier.cpp')
-rw-r--r--update_verifier/update_verifier.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/update_verifier/update_verifier.cpp b/update_verifier/update_verifier.cpp
index 28c3fe780..0cf536ce6 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>