Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/java/util/zip/
DDeflaterOutputStreamTest.java77 final PipedOutputStream pout = new PipedOutputStream(); in createInflaterStream() local
78 PipedInputStream pin = new PipedInputStream(pout); in createInflaterStream()
84 out = new DeflaterOutputStream(pout, flushing); in createInflaterStream()
86 out = new GZIPOutputStream(pout, flushing); in createInflaterStream()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DGZIPOutputStreamTest.java176 PipedOutputStream pout = new PipedOutputStream(); in testSyncFlush() local
177 PipedInputStream pin = new PipedInputStream(pout); in testSyncFlush()
182 GZIPOutputStream out = new GZIPOutputStream(pout, true /* syncFlush */); in testSyncFlush()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DPipedInputStreamTest.java43 public PWriter(PipedOutputStream pout, int nbytes) { in PWriter() argument
44 pos = pout; in PWriter()
118 PipedOutputStream pout = new PipedOutputStream(pin); in test_available() local
123 pout.write(i); in test_available()
DStreamTokenizerTest.java181 PipedOutputStream pout = new PipedOutputStream(pin); in test_nextToken() local
182 pout.write("hello\n\r\r".getBytes("UTF-8")); in test_nextToken()
191 pout.close(); in test_nextToken()
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
DObjectInputStreamTest.java1271 PipedOutputStream pout = new PipedOutputStream(); in test_readClassDescriptor_1() local
1272 PipedInputStream pin = new PipedInputStream(pout); in test_readClassDescriptor_1()
1273 ObjectOutputStream out = new ObjectOutputStream(pout); in test_readClassDescriptor_1()
1394 PipedOutputStream pout = new PipedOutputStream(); in test_readObject_replacedClassDescriptor() local
1395 PipedInputStream pin = new PipedInputStream(pout); in test_readObject_replacedClassDescriptor()
1396 ObjectOutputStream oout = new TestObjectOutputStream(pout, objs); in test_readObject_replacedClassDescriptor()