Searched refs:fillBuf (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DStrictLineReader.java158 // Though it's an error to read after an exception, we will let {@code fillBuf()}
161 fillBuf();
184 // Mark unterminated line in case fillBuf throws EOFException or IOException.
186 fillBuf();
234 private void fillBuf() throws IOException { method in class:StrictLineReader
/libcore/luni/src/main/java/java/io/
H A DBufferedReader.java52 * must be {@link #fillBuf() filled} before characters can be read.
140 private int fillBuf() throws IOException { method in class:BufferedReader
263 if (pos < end || fillBuf() != -1) {
333 if (fillBuf() == -1) {
351 if ((pos != end || fillBuf() != -1) && buf[pos] == '\n') {
397 if (fillBuf() == -1) {
488 if (fillBuf() == -1) {

Completed in 111 milliseconds