Searched refs:StreamPipe (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/java/rmi/testlibrary/
H A DStreamPipe.java32 public class StreamPipe extends Thread { class in inherits:Thread
41 * StreamPipe constructor : should only be called by plugTogether() method.
43 private StreamPipe(InputStream in, OutputStream out, String name) { method in class:StreamPipe
50 * Creates a StreamPipe thread that copies in to out and returns
53 public static StreamPipe plugTogether(InputStream in, OutputStream out) {
57 name = "java.rmi.testlibrary.StreamPipe-" + (count++);
60 StreamPipe pipe = new StreamPipe(in, out, name);
79 System.err.println("*** IOException in StreamPipe.run:");
H A DJavaVM.java44 private StreamPipe outPipe;
45 private StreamPipe errPipe;
162 outPipe = StreamPipe.plugTogether(vm.getInputStream(), this.outputStream);
163 errPipe = StreamPipe.plugTogether(vm.getErrorStream(), this.errorStream);
/openjdk7/jdk/test/sun/rmi/rmic/RMIGenerator/
H A DRmicDefault.java30 * @build StreamPipe
63 StreamPipe.plugTogether(javacProcess.getInputStream(), System.out);
64 StreamPipe.plugTogether(javacProcess.getErrorStream(), System.out);
72 StreamPipe.plugTogether(rmicProcess.getInputStream(), System.out);
73 StreamPipe.plugTogether(rmicProcess.getErrorStream(), System.err);
/openjdk7/jdk/test/java/rmi/registry/classPathCodebase/
H A DClassPathCodebase.java100 StreamPipe.plugTogether(rmiregistry.getInputStream(), System.err);
101 StreamPipe.plugTogether(rmiregistry.getErrorStream(), System.err);

Completed in 31 milliseconds