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

  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
PatchConstants.java 69 * The bsdiff delta format.
71 BSDIFF((byte) 0);
93 return BSDIFF;
  /system/update_engine/payload_consumer/
payload_constants.cc 40 case InstallOperation::BSDIFF:
41 return "BSDIFF";
delta_performer.cc 37 #include <bsdiff/bspatch.h>
679 case InstallOperation::BSDIFF:
681 OP_DURATION_HISTOGRAM("BSDIFF", op_start_time);
    [all...]
  /system/update_engine/scripts/update_payload/
common.py 42 BSDIFF = _CLASS.BSDIFF
50 ALL = (REPLACE, REPLACE_BZ, MOVE, BSDIFF, SOURCE_COPY, SOURCE_BSDIFF, ZERO,
56 BSDIFF: 'BSDIFF',
update_metadata_pb2.py 39 name='BSDIFF', index=3, number=3,
applier.py 202 bsdiff_in_place: whether to perform BSDIFF operation in-place (optional)
412 if op.type in (common.OpType.BSDIFF, common.OpType.SOURCE_BSDIFF,
450 if op.type in (common.OpType.BSDIFF, common.OpType.SOURCE_BSDIFF,
493 This assumes an in-place update semantics for MOVE and BSDIFF, namely all
517 elif op.type == common.OpType.BSDIFF:
checker_unittest.py 37 'BSDIFF': common.OpType.BSDIFF,
795 op_type_name: 'REPLACE', 'REPLACE_BZ', 'MOVE', 'BSDIFF', 'SOURCE_COPY',
    [all...]
checker.py 838 """Specific checks for BSDIFF, SOURCE_BSDIFF, PUFFDIFF and BROTLI_BSDIFF
863 if (op.type == common.OpType.BSDIFF or
    [all...]
  /system/update_engine/payload_generator/
inplace_generator_unittest.cc 408 graph[1].aop.op.set_type(InstallOperation::BSDIFF);
442 InstallOperation::BSDIFF);
448 InstallOperation::BSDIFF);
456 InstallOperation::BSDIFF);
462 InstallOperation::BSDIFF);
470 InstallOperation::BSDIFF);
476 InstallOperation::BSDIFF);
510 InstallOperation::BSDIFF);
516 InstallOperation::BSDIFF);
523 InstallOperation::BSDIFF);
    [all...]
payload_generation_config.cc 159 case InstallOperation::BSDIFF:
160 // MOVE and BSDIFF were replaced by SOURCE_COPY and SOURCE_BSDIFF and
delta_diff_utils.cc 42 #include <bsdiff/bsdiff.h>
43 #include <bsdiff/patch_writer_factory.h>
65 // The maximum destination size allowed for bsdiff. In general, bsdiff should
448 // common case for free-space that's also problematic for bsdiff, so we want
686 // Disable bsdiff, and puffdiff when the data is too big.
689 version.OperationAllowed(InstallOperation::BSDIFF);
692 LOG(INFO) << "bsdiff blacklisted, data too big: "
746 std::unique_ptr<bsdiff::PatchWriterInterface> bsdiff_patch_writer
    [all...]
delta_diff_utils_unittest.cc 288 // Test a BSDIFF operation from block 1 to block 2.
317 EXPECT_EQ(InstallOperation::BSDIFF, op.type());
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
PatchReader.java 118 // V1 has exactly one delta and it must be bsdiff.
126 PatchConstants.DeltaFormat.BSDIFF.patchValue,
127 PatchConstants.DeltaFormat.BSDIFF.patchValue,
  /external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
FileByFileV1DeltaApplierTest.java 104 * To mock the dependency on bsdiff, a subclass of FileByFileV1DeltaApplier is made that always
151 // Initialize fake delta applier to mock out dependency on bsdiff
195 dataOut.write(PatchConstants.DeltaFormat.BSDIFF.patchValue);
PatchReaderTest.java 83 PatchConstants.DeltaFormat.BSDIFF,

Completed in 210 milliseconds