HomeSort by relevance Sort by last modified time
    Searched refs:bytesread (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/main/java/java/io/
BufferedInputStream.java 168 int bytesread = localIn.read(localBuf, pos, localBuf.length - pos); local
169 count = bytesread <= 0 ? pos : pos + bytesread;
170 return bytesread;