Home
last modified time | relevance | path

Searched refs:mMaxWeight (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/src/com/android/settings/applications/
DProcessStatsUi.java115 long mMaxWeight; field in ProcessStatsUi
223 args.putLong(ProcessStatsDetail.EXTRA_MAX_WEIGHT, mMaxWeight); in onPreferenceTreeClick()
727 mMaxWeight = (long)(mShowSystem ? persBackgroundWeight : backgroundWeight); in refreshStats()
728 if (mMaxWeight < maxWeight) { in refreshStats()
729 mMaxWeight = maxWeight; in refreshStats()
733 (mMaxWeight * 1024) / memTotalTime)); in refreshStats()
736 mMaxWeight = maxWeight; in refreshStats()
746 final double percentOfWeight = (((double)proc.mWeight) / mMaxWeight) * 100; in refreshStats()
755 final double percentOfWeight = (((double)proc.mWeight) / mMaxWeight) * 100; in refreshStats()
DProcessStatsDetail.java65 private long mMaxWeight; field in ProcessStatsDetail
85 mMaxWeight = args.getLong(EXTRA_MAX_WEIGHT); in onCreate()
112 final double percentOfWeight = (((double)mEntry.mWeight) / mMaxWeight) * 100; in createDetails()