Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DWspTypeDecoder.java478 int totalRead = 0;
487 totalRead += mDataLength;
490 totalRead += mDataLength;
498 if (decodeUintvarInteger(startIndex + totalRead)) {
499 totalRead += mDataLength;
502 return readContentParameters(startIndex + totalRead, leftToRead
503 - totalRead, accumulator + totalRead);
513 if (decodeNoValue(startIndex + totalRead)) {
514 totalRead += mDataLength;
516 } else if (decodeIntegerValue(startIndex + totalRead)) {
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DNativeCrashListener.java176 int totalRead = 0; in readExactly() local
178 int n = Os.read(fd, buffer, offset + totalRead, numBytes); in readExactly()
186 totalRead += n; in readExactly()
188 return totalRead; in readExactly()
/frameworks/base/services/backup/java/com/android/server/backup/fullbackup/
DPerformFullTransportBackupTask.java417 long totalRead = 0; in run() local
448 totalRead += nRead; in run()
452 new BackupProgress(preflightResult, totalRead)); in run()
460 + ": " + totalRead + " of " + quota); in run()
466 mBackupRunner.sendQuotaExceeded(totalRead, quota); in run()