Home | History | Annotate | Download | only in input

Lines Matching refs:read

30  * methods being called, such as read(byte[]) to read(byte[], int, int).
48 * Invokes the delegate's <code>read()</code> method.
49 * @return the byte read or -1 if the end of stream
52 public int read() throws IOException {
53 return in.read();
57 * Invokes the delegate's <code>read(byte[])</code> method.
58 * @param bts the buffer to read the bytes into
59 * @return the number of bytes read or -1 if the end of stream
62 public int read(byte[] bts) throws IOException {
63 return in.read(bts);
67 * Invokes the delegate's <code>read(byte[], int, int)</code> method.
68 * @param bts the buffer to read the bytes into
70 * @param end The number of bytes to read
71 * @return the number of bytes read or -1 if the end of stream
74 public int read(byte[] bts, int st, int end) throws IOException {
75 return in.read(bts, st, end);
107 * @param idx read ahead limit