Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/applications/
DProcStatsEntry.java46 final long mWeight; field in ProcStatsEntry
69 mWeight = (weightWithTime ? mDuration : 1) * (useUss ? mAvgUss : mAvgPss); in ProcStatsEntry()
71 + " avgpss=" + mAvgPss + " weight=" + mWeight); in ProcStatsEntry()
84 mWeight = in.readLong(); in ProcStatsEntry()
136 if (subProcs.get(0).mWeight > (subProcs.get(1).mWeight*3)) { in evaluateTargetPackage()
138 + subProcs.get(0).mPackage + " weight " + subProcs.get(0).mWeight in evaluateTargetPackage()
140 + " weight " + subProcs.get(1).mWeight); in evaluateTargetPackage()
147 long maxWeight = subProcs.get(0).mWeight; in evaluateTargetPackage()
150 if (subProcs.get(i).mWeight < (maxWeight/2)) { in evaluateTargetPackage()
152 + subProcs.get(i).mPackage + " weight " + subProcs.get(i).mWeight in evaluateTargetPackage()
[all …]
DProcessStatsUi.java78 if (lhs.mWeight < rhs.mWeight) {
80 } else if (lhs.mWeight > rhs.mWeight) {
722 if (maxWeight < proc.mWeight) { in refreshStats()
723 maxWeight = proc.mWeight; in refreshStats()
746 final double percentOfWeight = (((double)proc.mWeight) / mMaxWeight) * 100; in refreshStats()
755 final double percentOfWeight = (((double)proc.mWeight) / mMaxWeight) * 100; in refreshStats()
773 (proc.mWeight * 1024) / memTotalTime) in refreshStats()
DProcessStatsDetail.java112 final double percentOfWeight = (((double)mEntry.mWeight) / mMaxWeight) * 100; in createDetails()