Home
last modified time | relevance | path

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

/cts/tools/dex-tools/src/dex/reader/
DDexBuffer.java38 ByteArrayOutputStream bos = new ByteArrayOutputStream(); in DexBuffer() local
42 bos.write(buf, 0, len); in DexBuffer()
44 byte[] bytes = bos.toByteArray(); in DexBuffer()
/cts/tools/cfassembler/src/dxconvext/
DClassFileAssembler.java108 BufferedOutputStream bos = new BufferedOutputStream(os); in run() local
109 writeClassFile(r, bos, isDex); in run()
110 bos.close(); in run()
/cts/tests/tests/database/src/android/database/cts/
DDatabaseUtilsTest.java350 ByteArrayOutputStream bos = new ByteArrayOutputStream(); in testDumpCurrentRow() local
351 PrintStream os = new PrintStream(bos); in testDumpCurrentRow()
355 assertEquals(expected, bos.toString()); in testDumpCurrentRow()
390 ByteArrayOutputStream bos = new ByteArrayOutputStream(); in testDumpCursor() local
391 PrintStream os = new PrintStream(bos); in testDumpCursor()
396 assertEquals(expected, bos.toString()); in testDumpCursor()