HomeSort by relevance Sort by last modified time
    Searched refs:patch_filename (Results 1 - 10 of 10) sorted by null

  /external/bsdiff/
patch_writer_factory.cc 13 const std::string& patch_filename) {
15 new BsdiffPatchWriter(patch_filename));
19 const std::string& patch_filename,
23 new BsdiffPatchWriter(patch_filename, type, quality));
patch_writer.h 21 // bz2 as the compression algorithm and the file |patch_filename| to write
23 explicit BsdiffPatchWriter(const std::string& patch_filename);
27 // patch data to the file |patch_filename|.
28 BsdiffPatchWriter(const std::string& patch_filename,
bsdiff_main.cc 58 // |patch_filename| file. Returns 0 on success.
61 const char* patch_filename,
80 patch_writer = bsdiff::CreateBsdiffPatchWriter(patch_filename);
83 patch_filename, arguments.compressor_type(),
102 FILE* fp = fopen(patch_filename, "wb");
patch_writer.cc 29 BsdiffPatchWriter::BsdiffPatchWriter(const std::string& patch_filename)
30 : patch_filename_(patch_filename), format_(BsdiffFormat::kLegacy) {
36 BsdiffPatchWriter::BsdiffPatchWriter(const std::string& patch_filename,
39 : patch_filename_(patch_filename), format_(BsdiffFormat::kBsdf2) {
bspatch.cc 144 // Patch |old_filename| with |patch_filename| and save it to |new_filename|.
150 const char* patch_filename,
154 File::FOpen(patch_filename, O_RDONLY);
156 PLOG(ERROR) << "Error opening the patch file: " << patch_filename;
163 PLOG(ERROR) << "Error reading the patch file: " << patch_filename;
bsdiff.cc 50 size_t newsize, const char* patch_filename,
52 BsdiffPatchWriter patch(patch_filename);
  /external/bsdiff/include/bsdiff/
patch_writer_factory.h 22 const std::string& patch_filename);
28 const std::string& patch_filename,
bsdiff.h 18 // |patch_filename|. Returns 0 on success.
26 const char* patch_filename,
bspatch.h 22 const char* patch_filename,
  /device/linaro/bootloader/edk2/BaseTools/Scripts/
PatchCheck.py 548 def __init__(self, patch_filename):
549 if patch_filename == '-':
551 patch_filename = 'stdin'
553 f = open(patch_filename, 'rb')
557 print('Checking patch file:', patch_filename)
558 self.ok = CheckOnePatch(patch_filename, patch).ok

Completed in 221 milliseconds