Searched refs:mReadBytes (Results 1 – 2 of 2) sorted by relevance
244 size_t mReadBytes = 0; // GUARDED_BY(mReadLock) variable
2563 mReadBytes += bytesRead; in obtainBuffer()2619 mReadCV.wait(lock, [&]{ return mReadError != NO_ERROR || mReadBytes != 0; }); in read()2624 *read = std::min(bytes, mReadBytes); in read()2625 mReadBytes -= *read; in read()