Searched refs:indexInBuf (Results 1 – 1 of 1) sorted by relevance
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/ |
D | CachedInputStream.java | 155 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in read() local 160 int reads = in.read(buf, indexInBuf, toRead); in read() 162 System.arraycopy(buf, indexInBuf, buffer, offset, reads); in read() 189 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in copyMarkedBuffer() local 197 System.arraycopy(buf, indexInBuf, buffer, offset, toRead); in copyMarkedBuffer() 234 int indexInBuf = mPos - currentBuf * CHUNK_SIZE; in skip() local 239 int reads = in.read(buf, indexInBuf, toRead); in skip()
|