Searched defs:pipeSize (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DPipedInputStream.java121 * @param pipeSize the size of the pipe's buffer.
123 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
126 public PipedInputStream(PipedOutputStream src, int pipeSize) argument
128 initPipe(pipeSize);
152 * @param pipeSize the size of the pipe's buffer.
153 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
156 public PipedInputStream(int pipeSize) { argument
157 initPipe(pipeSize);
160 private void initPipe(int pipeSize) { argument
161 if (pipeSize <
[all...]
H A DPipedReader.java94 * @param pipeSize the size of the pipe's buffer.
96 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
99 public PipedReader(PipedWriter src, int pipeSize) throws IOException { argument
100 initPipe(pipeSize);
124 * @param pipeSize the size of the pipe's buffer.
125 * @exception IllegalArgumentException if {@code pipeSize <= 0}.
128 public PipedReader(int pipeSize) { argument
129 initPipe(pipeSize);
132 private void initPipe(int pipeSize) { argument
133 if (pipeSize <
[all...]

Completed in 113 milliseconds