Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DFixedByteArrayOutputStreamTest.java54 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in writeTextIntoStreamAndReturn() local
55 StreamUtil.copyStreams(mOutStream.getData(), baos); in writeTextIntoStreamAndReturn() local
56 baos.close(); in writeTextIntoStreamAndReturn()
57 return baos.toString(); in writeTextIntoStreamAndReturn()
116 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in testLessThanBufferWithOffset() local
117 StreamUtil.copyStreams(mOutStream.getData(), baos); in testLessThanBufferWithOffset() local
118 baos.close(); in testLessThanBufferWithOffset()
119 assertEquals(expected, baos.toString()); in testLessThanBufferWithOffset()
135 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in testWriteWithOffsetAndWrap() local
136 StreamUtil.copyStreams(mOutStream.getData(), baos); in testWriteWithOffsetAndWrap() local
[all …]
DStreamUtilTest.java133 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in testCopyStreams() local
134 StreamUtil.copyStreams(bais, baos); in testCopyStreams()
136 baos.close(); in testCopyStreams()
137 assertEquals(text, baos.toString()); in testCopyStreams()
143 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in testCopyStreamToWriter() local
144 Writer writer = new OutputStreamWriter(baos); in testCopyStreamToWriter()
148 baos.close(); in testCopyStreamToWriter()
149 assertEquals(text, baos.toString()); in testCopyStreamToWriter()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DGlobalConfigurationTest.java97 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in testPrintCommandUsage() local
98 PrintStream ps = new PrintStream(baos, true); in testPrintCommandUsage()
103 assertEquals(expected, baos.toString()); in testPrintCommandUsage()
106 baos = new ByteArrayOutputStream(); in testPrintCommandUsage()
107 ps = new PrintStream(baos, true); in testPrintCommandUsage()
111 assertTrue(baos.toString().contains(expected)); in testPrintCommandUsage()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationFactory.java688 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in loadAllConfigs() local
689 PrintStream ps = new PrintStream(baos); in loadAllConfigs()
709 CLog.e(baos.toString()); in loadAllConfigs()
711 throw new ConfigurationException(baos.toString()); in loadAllConfigs()
818 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in loadAndPrintAllConfigs() local
819 PrintStream ps = new PrintStream(baos); in loadAndPrintAllConfigs()
854 throw new ConfigurationException(baos.toString()); in loadAndPrintAllConfigs()