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

/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportProgressService.java601 info.realMax = SystemProperties.getInt(maxKey, info.max);
602 if (info.realMax <= 0 ) {
609 * - info.realProgress / info.realMax represents the real progress
615 int newPercentage = (CAPPED_MAX * info.realProgress) / info.realMax;
616 int max = info.realMax;
1625 int realMax; field in class:BugreportProgressService.BugreportInfo
1741 final float realPercent = ((float) realProgress * 100 / realMax);
1746 + "\n\treal progress: " + realProgress + "/" + realMax + " (" + realPercent + ")"
1762 realMax = in.readInt();
1786 dest.writeInt(realMax);
[all...]

Completed in 1263 milliseconds