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

/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java596 info.realProgress = SystemProperties.getInt(progressKey, 0);
597 if (info.realProgress == 0) {
609 * - info.realProgress / info.realMax represents the real progress
615 int newPercentage = (CAPPED_MAX * info.realProgress) / info.realMax;
617 int progress = info.realProgress;
1630 int realProgress; field in class:BugreportProgressService.BugreportInfo
1741 final float realPercent = ((float) realProgress * 100 / realMax);
1746 + "\n\treal progress: " + realProgress + "/" + realMax + " (" + realPercent + ")"
1763 realProgress = in.readInt();
1787 dest.writeInt(realProgress);
[all...]

Completed in 71 milliseconds