Searched refs:totalRead (Results 1 - 3 of 3) sorted by relevance

/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_transport.cpp127 size_t totalRead = 0; local
128 while (totalRead < len) {
129 int n = read(mSocket, (uint8_t*)data + totalRead, len - totalRead);
135 totalRead += n;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DWspTypeDecoder.java468 int totalRead = 0;
477 totalRead += mDataLength;
480 totalRead += mDataLength;
488 if (decodeUintvarInteger(startIndex + totalRead)) {
489 totalRead += mDataLength;
492 return readContentParameters(startIndex + totalRead, leftToRead
493 - totalRead, accumulator + totalRead);
503 if (decodeNoValue(startIndex + totalRead)) {
504 totalRead
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DNativeCrashListener.java182 int totalRead = 0;
184 int n = Libcore.os.read(fd, buffer, offset + totalRead, numBytes);
192 totalRead += n;
194 return totalRead;

Completed in 1504 milliseconds