Lines Matching refs:input

31  * functionality to another input stream-namely,
32 * the ability to buffer the input and to
38 * as necessary from the contained input stream,
40 * operation remembers a point in the input
45 * the contained input stream.
79 * </code>contain buffered input data obtained
80 * from the underlying input stream.
91 * is the next byte to be supplied as input;
95 * read from the contained input stream.
107 * If there is no marked position in the input
109 * there is a marked position in the input
111 * is the first byte to be supplied as input
145 * Check to make sure that underlying input stream has not been
149 InputStream input = in;
150 if (input == null)
152 return input;
168 * and saves its argument, the input stream
172 * @param in the underlying input stream.
181 * and saves its argument, the input stream
186 * @param in the underlying input stream.
247 * @exception IOException if this input stream has been closed by
286 * Reads bytes from this byte-input stream into the specified byte array,
303 * returns zero, indicating that further input requests would block.
318 * @exception IOException if this input stream has been closed by
341 InputStream input = in;
342 if (input != null && input.available() <= 0)
352 * or if this input stream has been closed by
382 * skipped over) from this input stream without blocking by the next
383 * invocation of a method for this input stream. The next invocation might be
392 * over) from this input stream without blocking.
393 * @exception IOException if this input stream has been closed by
442 * Tests if this input stream supports the <code>mark</code>
457 * Closes this input stream and releases any system resources
469 InputStream input = in;
471 if (input != null)
472 input.close();