Home
last modified time | relevance | path

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

/cts/libs/input/src/com/android/cts/input/
DHidJsonParser.java130 OutputStream baos = new ByteArrayOutputStream(); in readFully() local
134 baos.write(buffer, 0, read); in readFully()
137 return baos.toString(); in readFully()
/cts/tools/cfassembler/src/dxconvext/
DClassFileAssembler.java172 ByteArrayOutputStream baos = new ByteArrayOutputStream(8192); in writeClassFile() local
190 baos.write(res); in writeClassFile()
200 byte[] outBytes = baos.toByteArray(); in writeClassFile()
/cts/tests/tests/util/src/android/util/cts/
DStrictJarFileTest.java358 ByteArrayOutputStream baos = new ByteArrayOutputStream(128); in readUtf8String() local
362 baos.write(readBuffer, 0, byteCount); in readUtf8String()
364 return new String(baos.toByteArray(), StandardCharsets.UTF_8); in readUtf8String()
/cts/hostsidetests/media/bitstreams/src/android/media/cts/bitstreams/
DMediaBitstreamsTest.java332 OutputStream baos = new ByteArrayOutputStream(); in getBitstreamsListString() local
333 PrintStream ps = new PrintStream(baos, true); in getBitstreamsListString()
338 return baos.toString(); in getBitstreamsListString()
/cts/tests/tests/graphics/src/android/graphics/cts/
DBitmapFactoryTest.java682 ByteArrayOutputStream baos = new ByteArrayOutputStream(); in testParcel() local
683 assertTrue(b2.compress(Bitmap.CompressFormat.JPEG, 50, baos)); in testParcel()