Searched refs:pis (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/java/io/DataInputStream/
H A DReadLinePushback.java34 PushbackInputStream pis = new PushbackInputStream
36 DataInputStream dis = new DataInputStream(pis);
43 int count = pis.available();
/openjdk7/jdk/test/java/util/zip/
H A DInflateIn_DeflateOut.java132 PairedInputStream pis = new PairedInputStream();
133 InflaterInputStream iis = new InflaterInputStream(pis);
135 PairedOutputStream pos = new PairedOutputStream(pis);
136 pis.setPairedOutputStream(pos);
193 PairedInputStream pis = new PairedInputStream();
194 InflaterInputStream iis = new InflaterInputStream(pis);
196 PairedOutputStream pos = new PairedOutputStream(pis);
197 pis.setPairedOutputStream(pos);
204 PairedInputStream pis = new PairedInputStream();
205 PairedOutputStream pos = new PairedOutputStream(pis);
[all...]
/openjdk7/jdk/test/java/io/InputStream/
H A DOpsAfterClose.java169 PipedInputStream pis = new PipedInputStream(new PipedOutputStream());
170 if (testInputStream(pis)) {
231 private static boolean testPushbackInputStream(PushbackInputStream pis) argument
235 pis.unread(1);
236 System.out.println("Test failed for unread(int):" + pis);
244 pis.unread(buf, 0, 2);
246 pis);
252 pis.unread(buf);
253 System.out.println("Test failed for unread(char[] buf):" + pis);
H A DReadParams.java158 PipedInputStream pis = new PipedInputStream();
159 pos.connect(pis);
161 doTest(pis);
162 doTest1(pis);
163 pis.close();
/openjdk7/jdk/test/java/io/OutputStream/
H A DWriteParams.java143 PipedInputStream pis = new PipedInputStream();
145 pos.connect(pis);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DWSServiceDelegate.java590 SEIStub pis = new SEIStub(eif, binding, eif.model, epr);
592 T proxy = createProxy(portInterface, pis);
600 private <T> T createProxy(final Class<T> portInterface, final SEIStub pis) { argument
612 new Class[]{portInterface, WSBindingProvider.class, Closeable.class}, pis);

Completed in 41 milliseconds