Home | History | Annotate | Download | only in os

Lines Matching refs:mOffset

259         private int mOffset = 0;
264 if (mOffset >= mLength) {
267 return mLength - mOffset;
277 mMark = mOffset;
282 mOffset = mMark;
308 int result = readBytes(buffer, mOffset, offset, count);
310 mOffset += result;
317 if (mOffset + n > mLength) {
318 n = mLength - mOffset;
320 mOffset += n;
327 private int mOffset = 0;
332 writeBytes(buffer, offset, mOffset, count);
333 mOffset += count;