Home
last modified time | relevance | path

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

/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/
DBsPatchTest.java87 BsPatch.transformBytes(patchInput.length, patchInputStream, oldData, newData, buffer1, buffer2); in testTransformBytes()
100 BsPatch.transformBytes(2, patchIn, oldData, new ByteArrayOutputStream(), buffer1, buffer2); in testTransformBytes_Error_NotEnoughBytes()
115 BsPatch.transformBytes( in testTransformBytes_Error_JunkPatch()
134 BsPatch.transformBytes( in testTransformBytes_Error_JunkPatch_Underflow()
173 BsPatch.applyPatch(new RandomAccessFile(oldFile, "r"), newData, patchIn); in testApplyPatch_BadSignature()
196 BsPatch.applyPatch(new RandomAccessFile(oldFile, "r"), newData, patchIn); in testApplyPatch_NewLengthNegative()
219 BsPatch.applyPatch( in testApplyPatch_NewLengthTooLarge()
243 BsPatch.applyPatch(new RandomAccessFile(oldFile, "r"), newData, patchIn); in testApplyPatch_DiffSegmentLengthNegative()
266 BsPatch.applyPatch(new RandomAccessFile(oldFile, "r"), newData, patchIn); in testApplyPatch_DiffSegmentLengthTooLarge()
289 BsPatch.applyPatch(new RandomAccessFile(oldFile, "r"), newData, patchIn); in testApplyPatch_CopySegmentLengthNegative()
[all …]
/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/
DBsDiffDeltaApplier.java36 BsPatch.applyPatch(oldBlobRaf, newBlobOut, deltaIn); in applyDelta()
DBsPatch.java31 public class BsPatch { class