Searched defs:read (Results 1 - 2 of 2) sorted by relevance

/org.ahmadsoft.foprocessor_2.2.2/src/org/ahmadsoft/io/util/
H A DInterruptableInputStream.java30 * attempts to read from it will fail.
82 public int read() throws IOException { method in class:InterruptableInputStream
84 return wrapped.read();
87 public int read(byte[] b, int off, int len) throws IOException { method in class:InterruptableInputStream
89 return wrapped.read(b, off, len);
92 public int read(byte[] b) throws IOException { method in class:InterruptableInputStream
94 return wrapped.read(b);
/org.ahmadsoft.foprocessor_2.2.2/src/org/ahmadsoft/foprocessor/operations/
H A DConversionOperation.java207 public int read() throws IOException { method in class:MeteredInputStream
208 int result = delegate.read();
214 public int read(byte[] b, int off, int len) throws IOException { method in class:MeteredInputStream
215 int result = delegate.read(b, off, len);
221 public int read(byte[] b) throws IOException { method in class:MeteredInputStream
222 int result = delegate.read(b);

Completed in 3 milliseconds