HomeSort by relevance Sort by last modified time
    Searched refs:BSDIFF (Results 1 - 10 of 10) 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;
  /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/generator/src/main/java/com/google/archivepatcher/generator/
PatchWriter.java 115 // In v1 the delta format is always bsdiff, so write it unconditionally.
116 dataOut.write(PatchConstants.DeltaFormat.BSDIFF.patchValue);
  /external/archive-patcher/generator/src/test/java/com/google/archivepatcher/generator/
PatchWriterTest.java 141 Assert.assertEquals(PatchConstants.DeltaFormat.BSDIFF.patchValue, patchIn.read());
  /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,
  /bootable/recovery/tests/unit/
commands_test.cpp 33 ASSERT_EQ(Command::Type::BSDIFF, Command::ParseType("bsdiff"));
190 "bsdiff 0 148 "
199 ASSERT_EQ(Command::Type::BSDIFF, command.type());
362 // Note that the case of having excess args in BSDIFF, IMGDIFF and MOVE is covered by
366 "bsdiff",
  /bootable/recovery/updater/
commands.cpp 55 } else if (type_str == "bsdiff") {
56 return Type::BSDIFF;
241 } else if (op == Type::BSDIFF || op == Type::IMGDIFF) {
blockimg.cpp 550 CHECK(params.tokens[0] == "move" || params.tokens[0] == "bsdiff" ||
556 // bsdiff <offset> <len> <src_hash> <tgt_hash> <tgt_range> <src_blk_count> <src_range>
    [all...]
  /bootable/recovery/updater/include/private/
commands.h 255 // bsdiff <patchstart> <patchlen> <srchash> <dsthash> <...>
291 BSDIFF,
393 // The patch info. Only meaningful for BSDIFF and IMGDIFF commands.
417 // in a move/bsdiff/imgdiff command.
426 // Commands that read data from the partition (i.e. move/bsdiff/imgdiff/stash) have one or more

Completed in 210 milliseconds