Home
last modified time | relevance | path

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

/external/archive-patcher/applier/src/test/java/com/google/archivepatcher/applier/bsdiff/
DBsPatchTest.java82 final ByteArrayInputStream patchInputStream = new ByteArrayInputStream(patchInput); in testTransformBytes() local
87 BsPatch.transformBytes(patchInput.length, patchInputStream, oldData, newData, buffer1, buffer2); in testTransformBytes()
110 final ByteArrayInputStream patchInputStream = new ByteArrayInputStream(patchInput); in testTransformBytes_Error_JunkPatch() local
116 patchInput.length, patchInputStream, oldData, newData, buffer1, buffer2); in testTransformBytes_Error_JunkPatch()
126 final ByteArrayInputStream patchInputStream = new ByteArrayInputStream(patchInput); in testTransformBytes_Error_JunkPatch_Underflow() local
135 patchInput.length + 1, patchInputStream, oldData, newData, buffer1, buffer2); in testTransformBytes_Error_JunkPatch_Underflow()
658 InputStream patchInputStream = new ByteArrayInputStream(readTestData(patchPatch)); in invokeApplyPatch() local
661 BsPatch.applyPatch(oldData, actualNewData, patchInputStream); in invokeApplyPatch()