Searched refs:MyInputStream (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/test/java/io/InputStream/
H A DSkip.java66 MyInputStream in = new MyInputStream(11);
77 in = new MyInputStream(9000);
87 in = new MyInputStream(5000);
97 * in = new MyInputStream(total);
105 class MyInputStream extends InputStream { class in inherits:InputStream
110 public MyInputStream(long endoffile) { method in class:MyInputStream
H A DReadParams.java125 new BufferedInputStream(new MyInputStream(1024));
146 DataInputStream dis = new DataInputStream(new MyInputStream(1024));
152 new LineNumberInputStream(new MyInputStream(1024));
166 new PushbackInputStream(new MyInputStream(1024));
178 new SequenceInputStream(new MyInputStream(1024),
179 new MyInputStream(1024));
206 class MyInputStream extends InputStream { class in inherits:InputStream
211 public MyInputStream(long endoffile) { method in class:MyInputStream
/openjdk7/jdk/test/java/io/BufferedInputStream/
H A DCloseStream.java38 BufferedInputStream in = new BufferedInputStream(new MyInputStream());
53 class MyInputStream extends InputStream { class in inherits:InputStream
55 public MyInputStream() { method in class:MyInputStream
/openjdk7/jdk/test/java/io/LineNumberInputStream/
H A DSkip.java66 LineNumberInputStream in = new LineNumberInputStream(new MyInputStream(11));
81 class MyInputStream extends InputStream { class in inherits:InputStream
86 public MyInputStream(long endoffile) { method in class:MyInputStream
/openjdk7/jdk/test/java/io/DataInputStream/
H A DSkipBytes.java61 DataInputStream dis = new DataInputStream(new MyInputStream());
70 class MyInputStream extends InputStream { class in inherits:InputStream
/openjdk7/jdk/test/sun/tools/jhat/
H A DHatRun.java40 class MyInputStream implements Runnable { class in inherits:Runnable
45 /* Create MyInputStream that saves all output to a StringBuffer */
46 MyInputStream(String name, InputStream in) { method in class:MyInputStream
95 private MyInputStream output;
96 private MyInputStream error;
136 output = new MyInputStream("Input Stream", p.getInputStream());
137 error = new MyInputStream("Error Stream", p.getErrorStream());
/openjdk7/jdk/test/demo/jvmti/
H A DDemoRun.java40 class MyInputStream implements Runnable { class in inherits:Runnable
45 /* Create MyInputStream that saves all output to a StringBuffer */
46 MyInputStream(String name, InputStream in) { method in class:MyInputStream
94 private MyInputStream output;
95 private MyInputStream error;
207 output = new MyInputStream("Input Stream", p.getInputStream());
208 error = new MyInputStream("Error Stream", p.getErrorStream());
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/
H A DClientTimeout.java164 MyInputStream ins = null;
170 ins = new MyInputStream(super.getInputStream());
233 static class MyInputStream extends InputStream { class in class:ClientTimeout
236 public MyInputStream(InputStream ins) { method in class:ClientTimeout.MyInputStream

Completed in 34 milliseconds