Home
last modified time | relevance | path

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

/external/archive-patcher/integrationtest/src/test/java/com/google/archivepatcher/integrationtest/
DFileByFileV1IntegrationTest.java190 ByteArrayOutputStream newOut = new ByteArrayOutputStream(); in testPatchAndApply() local
191 applier.applyDelta(oldFile, patchIn, newOut); in testPatchAndApply()
195 Assert.assertArrayEquals(newArchiveBytes, newOut.toByteArray()); in testPatchAndApply()
/external/clang/lib/ARCMigrate/
DFileRemapper.cpp151 llvm::raw_fd_ostream newOut(fd, /*shouldClose=*/true); in flushToFile() local
153 newOut.write(mem->getBufferStart(), mem->getBufferSize()); in flushToFile()
154 newOut.close(); in flushToFile()
/external/archive-patcher/tools/src/main/java/com/google/archivepatcher/tools/
DFileByFileTool.java221 FileOutputStream newOut = new FileOutputStream(newFile); in applyPatch()
222 BufferedOutputStream bufferedNewOut = new BufferedOutputStream(newOut)) { in applyPatch()