Home
last modified time | relevance | path

Searched refs:readPatchApplyPlan (Results 1 – 3 of 3) sorted by relevance

/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/
DPatchReaderTest.java229 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan()
240 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptIdentifier()
246 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptDeltaFriendlyOldFileSize()
253 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptOldFileUncompressionInstructionCount()
260 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptOldFileUncompressionInstructionOrder()
267 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptOldFileUncompressionInstructionOffset()
274 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptOldFileUncompressionInstructionLength()
281 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptDeltaFriendlyNewFileRecompressionInstructionCount()
288 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptDeltaFriendlyNewFileRecompressionInstructionOrder()
295 new PatchReader().readPatchApplyPlan(new ByteArrayInputStream(writeTestPatch())); in testReadPatchApplyPlan_CorruptDeltaFriendlyNewFileRecompressionInstructionOffset()
[all …]
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
DFileByFileV1DeltaApplier.java92 PatchApplyPlan plan = patchReader.readPatchApplyPlan(deltaIn); in applyDeltaInternal()
DPatchReader.java44 public PatchApplyPlan readPatchApplyPlan(InputStream in) throws IOException { in readPatchApplyPlan() method in PatchReader