Lines Matching defs:read

34  * to read an indefinite number of data bytes
38 * the next read operation on the input stream
43 * a method whose job is to read just an identifier
44 * can read until it sees the operator and
45 * then push the operator back to be re-read.
61 * be read. When the buffer is empty, <code>pos</code> is equal to
86 * @param in the input stream from which bytes will be read.
108 * @param in the input stream from which bytes will be read.
124 * one, and otherwise calls the <code>read</code> method of its underlying
132 * @see java.io.InputStream#read()
134 public int read() throws IOException {
139 return super.read();
145 * that, if fewer than <code>len</code> bytes have been read then it
148 * bytes are read and <code>0</code> is returned.
150 * @param b the buffer into which the data is read.
152 * @param len the maximum number of bytes read.
153 * @return the total number of bytes read into the buffer, or
163 * @see java.io.InputStream#read(byte[], int, int)
165 public int read(byte[] b, int off, int len) throws IOException {
186 len = super.read(b, off, len);
197 * After this method returns, the next byte to be read will have the value
217 * read will have the value <code>b[off]</code>, the byte after that will
240 * pushback buffer. After this method returns, the next byte to be read
256 * Returns an estimate of the number of bytes that can be read (or
259 * the same thread or another thread. A single read or skip of this
260 * many bytes will not block, but may read or skip fewer bytes.
266 * @return the number of bytes that can be read (or skipped over) from
344 * @param readlimit the maximum limit of bytes that can be read before
370 * Once the stream has been closed, further read(), unread(),