Home | History | Annotate | Download | only in io

Lines Matching defs:in

9  * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
50 protected volatile InputStream in;
54 * by assigning the argument <code>in</code>
55 * to the field <code>this.in</code> so as
58 * @param in the underlying input stream, or <code>null</code> if
61 protected FilterInputStream(InputStream in) {
62 this.in = in;
67 * byte is returned as an <code>int</code> in the range
75 * simply performs <code>in.read()</code> and returns the result.
80 * @see java.io.FilterInputStream#in
83 return in.read();
94 * <i>not</i> do <code>in.read(b)</code> instead;
116 * This method simply performs <code>in.read(b, off, len)</code>
120 * @param off the start offset in the destination array <code>b</code>
130 * @see java.io.FilterInputStream#in
133 return in.read(b, off, len);
143 * This method simply performs <code>in.skip(n)</code>.
151 return in.skip(n);
161 * This method returns the result of {@link #in in}.available().
168 return in.available();
175 * method simply performs <code>in.close()</code>.
178 * @see java.io.FilterInputStream#in
181 in.close();
185 * Marks the current position in this input stream. A subsequent
193 * This method simply performs <code>in.mark(readlimit)</code>.
197 * @see java.io.FilterInputStream#in
201 in.mark(readlimit);
209 * simply performs <code>in.reset()</code>.
211 * Stream marks are intended to be used in
212 * situations where you need to read ahead a little to see what's in
222 * @see java.io.FilterInputStream#in
226 in.reset();
233 * simply performs <code>in.markSupported()</code>.
238 * @see java.io.FilterInputStream#in
243 return in.markSupported();