Home | History | Annotate | Download | only in util

Lines Matching refs:read

10  * An {@link java.io.InputStream} that catches {@link java.io.IOException}s during read and skip calls and stores them
71 public int read(byte[] buffer) throws IOException {
72 int read;
74 read = wrapped.read(buffer);
77 read = -1;
79 return read;
83 public int read(byte[] buffer, int byteOffset, int byteCount) throws IOException {
84 int read;
86 read = wrapped.read(buffer, byteOffset, byteCount);
89 read = -1;
91 return read;
112 public int read() throws IOException {
115 result = wrapped.read();