Searched refs:mReadBytes (Results 1 – 3 of 3) sorted by relevance
25 private int mReadBytes; field in LimitInputStream33 mReadBytes = 0; in LimitInputStream()39 return Math.min(super.available(), mLimit - mReadBytes); in available()44 if (mReadBytes == mLimit) { in read()47 mReadBytes++; in read()66 mReadBytes += result; in read()81 mReadBytes += (int) bytesSkipped; in skip()
227 size_t mReadBytes = 0; // GUARDED_BY(readMutex()) variable
3356 mReadBytes += bytesRead; in obtainBuffer()3412 mReadCV.wait(lock, [&]{ return mReadError != NO_ERROR || mReadBytes != 0; }); in read()3417 *read = std::min(bytes, mReadBytes); in read()3418 mReadBytes -= *read; in read()