Home
last modified time | relevance | path

Searched refs:bspatch (Results 1 – 11 of 11) sorted by relevance

/external/bsdiff/include/bsdiff/
Dbspatch.h20 int bspatch(const char* old_filename,
27 int bspatch(const char* old_filename,
35 int bspatch(const uint8_t* old_data,
42 int bspatch(const std::unique_ptr<FileInterface>& old_file,
/external/bsdiff/
DMakefile4 EXECUTABLES-y := bspatch
51 bspatch.cc \
98 bspatch: $(BSPATCH_OBJS) bspatch_main.o target
99 bspatch: LDLIBS += $(BSPATCH_LIBS) target
106 bsdiff_unittest bsdiff bspatch: target
Dbspatch.cc149 int bspatch(const char* old_filename, in bspatch() function
169 return bspatch(old_filename, new_filename, patch.data(), patch_size, in bspatch()
177 int bspatch(const char* old_filename, in bspatch() function
226 return bspatch(old_file, new_file, patch_data, patch_size); in bspatch()
231 int bspatch(const uint8_t* old_data, in bspatch() function
239 return bspatch(old_file, new_file, patch_data, patch_size); in bspatch()
244 int bspatch(const std::unique_ptr<FileInterface>& old_file, in bspatch() function
DBUILD.gn20 ":bspatch",
61 "bspatch.cc",
76 executable("bspatch") {
DAndroid.bp59 "bspatch.cc",
98 // Host executables: bsdiff and bspatch are only built for the host.
100 name: "bspatch",
Dbspatch_main.cc26 return bsdiff::bspatch(argv[1], argv[2], argv[3], old_extents, new_extents); in main()
Dlibbspatch.pc4 Description: bspatch library for applying delta patches
D.gitignore14 /bspatch
Dbspatch_fuzzer.cc22 bsdiff::bspatch(source, target, data, size); in FuzzBspatch()
DREADME.chromium9 bsdiff and bspatch are tools for building and applying patches to binary
/external/puffin/src/
Dpuffpatch.cc172 TEST_AND_RETURN_FALSE(0 == bspatch(reader, writer, in PuffPatch()