Home | History | Annotate | Download | only in io

Lines Matching refs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
37 * @param in the input stream to be wrapped
39 public CountingInputStream(InputStream in) {
40 super(in);
49 int result = in.read();
57 int result = in.read(b, off, len);
65 long result = in.skip(n);
71 in.mark(readlimit);
77 if (!in.markSupported()) {
84 in.reset();