Searched defs:unread (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DPushbackInputStream.java31 * the ability to "push back" or "unread"
37 * the code fragment can "unread" it, so that
206 public void unread(int b) throws IOException { method in class:PushbackInputStream
229 public void unread(byte[] b, int off, int len) throws IOException { method in class:PushbackInputStream
251 public void unread(byte[] b) throws IOException { method in class:PushbackInputStream
252 unread(b, 0, b.length);
370 * Once the stream has been closed, further read(), unread(),
H A DPushbackReader.java151 public void unread(int c) throws IOException { method in class:PushbackReader
174 public void unread(char cbuf[], int off, int len) throws IOException { method in class:PushbackReader
195 public void unread(char cbuf[]) throws IOException { method in class:PushbackReader
196 unread(cbuf, 0, cbuf.length);
242 * unread(), ready(), or skip() invocations will throw an IOException.
H A DObjectInputStream.java2408 private int unread = 0; field in class:ObjectInputStream.BlockDataInputStream
2438 unread = 0;
2440 throw new IllegalStateException("unread block data");
2543 * unread fields to reflect the new amount of available block data; if
2545 * unread to 0 and end to -1.
2551 if (unread > 0) {
2553 in.read(buf, 0, Math.min(unread, MAX_BLOCK_SIZE));
2556 unread -= n;
2565 unread = n;
2568 unread
[all...]

Completed in 42 milliseconds