Home | History | Annotate | Download | only in bsdiff

Lines Matching refs:bspatch

28 __FBSDID("$FreeBSD: src/usr.bin/bsdiff/bspatch/bspatch.c,v 1.1 2005/08/06 01:59:06 cperciva Exp $");
31 #include "bsdiff/bspatch.h"
148 int bspatch(const char* old_filename,
168 return bspatch(old_filename, new_filename, patch.data(), patch_size,
176 int bspatch(const char* old_filename,
225 return bspatch(old_file, new_file, patch_data, patch_size);
230 int bspatch(const uint8_t* old_data,
238 return bspatch(old_file, new_file, patch_data, patch_size);
243 int bspatch(const std::unique_ptr<FileInterface>& old_file,