Lines Matching defs:out
27 * @summary Test that Process input/out can be concurrently read/written
48 OutputStream out = p.getOutputStream();
50 Thread t1 = new WriterThread(out, in);
52 Thread t2 = new WriterThread(out, in);
61 OutputStream out;
63 WriterThread(OutputStream out, InputStream in) {
64 this.out = out;
69 out.write('a');
70 out.flush();