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

/libcore/luni/src/main/java/java/io/
H A DBufferedInputStream.java145 private int fillbuf(InputStream localIn, byte[] localBuf) argument
149 int result = localIn.read(localBuf);
157 if (markpos == 0 && marklimit > localBuf.length) {
159 int newLength = localBuf.length * 2;
164 System.arraycopy(localBuf, 0, newbuf, 0, localBuf.length);
167 localBuf = buf = newbuf;
169 System.arraycopy(localBuf, markpos, localBuf, 0, localBuf
[all...]

Completed in 64 milliseconds