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.cc148 int bspatch(const char* old_filename, in bspatch() function
168 return bspatch(old_filename, new_filename, patch.data(), patch_size, in bspatch()
176 int bspatch(const char* old_filename, in bspatch() function
225 return bspatch(old_file, new_file, patch_data, patch_size); in bspatch()
230 int bspatch(const uint8_t* old_data, in bspatch() function
238 return bspatch(old_file, new_file, patch_data, patch_size); in bspatch()
243 int bspatch(const std::unique_ptr<FileInterface>& old_file, in bspatch() function
DAndroid.bp40 "bspatch.cc",
79 // Host executables: bsdiff and bspatch are only built for the host.
81 name: "bspatch",
DBUILD.gn20 ":bspatch",
61 "bspatch.cc",
76 executable("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
DREADME.chromium9 bsdiff and bspatch are tools for building and applying patches to binary
Dbspatch_fuzzer.cc22 bsdiff::bspatch(source, target, data, size); in FuzzBspatch()
/external/puffin/src/
Dpuffpatch.cc172 TEST_AND_RETURN_FALSE(0 == bspatch(reader, writer, in PuffPatch()