Home | History | Annotate | Download | only in util

Lines Matching refs:reads

138             int reads = in.read(buffer, offset, count);
139 return reads;
158 int reads = in.read(buf, indexInBuf, toRead);
159 if (reads > 0) {
160 System.arraycopy(buf, indexInBuf, buffer, offset, reads);
161 mPos += reads;
162 mCount += reads;
163 totalReads += reads;
164 offset += reads;
165 count -= reads;
167 reads = in.read(buffer, offset, count);
168 if (reads >0 ) {
169 totalReads += reads;
237 int reads = in.read(buf, indexInBuf, toRead);
238 if (reads > 0) {
239 mPos += reads;
240 mCount += reads;
241 byteCount -= reads;
242 totalSkip += reads;