summaryrefslogtreecommitdiffstats
path: root/applypatch/applypatch.h
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2016-02-05 23:54:36 +0100
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-02-05 23:54:36 +0100
commit6b89aa7662186f940f2ae35d479598601dc28a07 (patch)
tree9d174f1c2cc75d239d0034853f372f590085c24d /applypatch/applypatch.h
parentMerge "Refactor existing tests to use gtest" (diff)
parentapplypatch: fix memory leaks reported by static analysis. (diff)
downloadandroid_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.tar
android_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.tar.gz
android_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.tar.bz2
android_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.tar.lz
android_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.tar.xz
android_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.tar.zst
android_bootable_recovery-6b89aa7662186f940f2ae35d479598601dc28a07.zip
Diffstat (limited to 'applypatch/applypatch.h')
-rw-r--r--applypatch/applypatch.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/applypatch/applypatch.h b/applypatch/applypatch.h
index e0df104b5..14fb490ba 100644
--- a/applypatch/applypatch.h
+++ b/applypatch/applypatch.h
@@ -18,6 +18,9 @@
#define _APPLYPATCH_H
#include <sys/stat.h>
+
+#include <vector>
+
#include "openssl/sha.h"
#include "edify/expr.h"
@@ -68,22 +71,22 @@ void FreeFileContents(FileContents* file);
int FindMatchingPatch(uint8_t* sha1, char* const * const patch_sha1_str,
int num_patches);
-// bsdiff.c
+// bsdiff.cpp
void ShowBSDiffLicense();
int ApplyBSDiffPatch(const unsigned char* old_data, ssize_t old_size,
const Value* patch, ssize_t patch_offset,
SinkFn sink, void* token, SHA_CTX* ctx);
int ApplyBSDiffPatchMem(const unsigned char* old_data, ssize_t old_size,
const Value* patch, ssize_t patch_offset,
- unsigned char** new_data, ssize_t* new_size);
+ std::vector<unsigned char>* new_data);
-// imgpatch.c
+// imgpatch.cpp
int ApplyImagePatch(const unsigned char* old_data, ssize_t old_size,
const Value* patch,
SinkFn sink, void* token, SHA_CTX* ctx,
const Value* bonus_data);
-// freecache.c
+// freecache.cpp
int MakeFreeSpaceOnCache(size_t bytes_needed);
#endif