Home | History | Annotate | Download | only in bsdiff

Lines Matching refs:patch_data

172 // Patch |old_filename| with |patch_data| and save it to |new_filename|.
178 const uint8_t* patch_data,
221 uint64_t newsize = ParseInt64(patch_data + 24);
225 return bspatch(old_file, new_file, patch_data, patch_size);
228 // Patch |old_data| with |patch_data| and save it by calling sink function.
232 const uint8_t* patch_data,
238 return bspatch(old_file, new_file, patch_data, patch_size);
241 // Patch |old_file| with |patch_data| and save it to |new_file|.
245 const uint8_t* patch_data,
248 if (!patch_reader.Init(patch_data, patch_size)) {