Searched refs:snk (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DPipedWriter.java53 * available as input from <code>snk</code>.
55 * @param snk The piped reader to connect to.
58 public PipedWriter(PipedReader snk) throws IOException { argument
59 connect(snk);
78 * If <code>snk</code> is an unconnected piped reader and
82 * src.connect(snk)</pre></blockquote>
85 * snk.connect(src)</pre></blockquote>
88 * @param snk the piped reader to connect to.
91 public synchronized void connect(PipedReader snk) throws IOException { argument
92 if (snk
[all...]
H A DPipedOutputStream.java58 * available as input from <code>snk</code>.
60 * @param snk The piped input stream to connect to.
63 public PipedOutputStream(PipedInputStream snk) throws IOException { argument
64 connect(snk);
83 * If <code>snk</code> is an unconnected piped input stream and
87 * src.connect(snk)</pre></blockquote>
90 * snk.connect(src)</pre></blockquote>
93 * @param snk the piped input stream to connect to.
96 public synchronized void connect(PipedInputStream snk) throws IOException { argument
97 if (snk
[all...]

Completed in 72 milliseconds