Searched refs:mRunWeight (Results 1 – 6 of 6) sorted by relevance
53 final double mRunWeight; field in ProcStatsEntry75 mRunWeight = mAvgRunMem * (double) mRunDuration; in ProcStatsEntry()87 mBgWeight = mRunWeight = ((double)memDuration) * mem; in ProcStatsEntry()104 mRunWeight = in.readDouble(); in ProcStatsEntry()169 if (subProcs.get(0).mRunWeight > (subProcs.get(1).mRunWeight *3)) { in evaluateTargetPackage()171 + subProcs.get(0).mPackage + " weight " + subProcs.get(0).mRunWeight in evaluateTargetPackage()173 + " weight " + subProcs.get(1).mRunWeight); in evaluateTargetPackage()180 double maxWeight = subProcs.get(0).mRunWeight; in evaluateTargetPackage()185 if (subProc.mRunWeight < (maxWeight/2)) { in evaluateTargetPackage()187 + subProc.mPackage + " weight " + subProc.mRunWeight in evaluateTargetPackage()[all …]
48 double mRunWeight; field in ProcStatsPackageEntry69 mRunWeight = in.readDouble(); in ProcStatsPackageEntry()90 mRunWeight = 0; in updateMetrics()99 mRunWeight += entry.mRunWeight; in updateMetrics()151 dest.writeDouble(mRunWeight); in writeToParcel()180 return mRunWeight; in getRunWeight()
204 boolean statsForeground = mApp.mRunWeight > mApp.mBgWeight; in createDetails()205 double avgRam = (statsForeground ? mApp.mRunWeight : mApp.mBgWeight) * mWeightToRam; in createDetails()243 if (lhs.mRunWeight < rhs.mRunWeight) {245 } else if (lhs.mRunWeight > rhs.mRunWeight) {272 long memoryUse = Math.max((long) (entry.mRunWeight * mWeightToRam), in fillProcessesSection()
293 if (ent.mRunWeight > 0) { in getProcs()457 if (lhs.mRunWeight < rhs.mRunWeight) {459 } else if (lhs.mRunWeight > rhs.mRunWeight) {
49 boolean statsForeground = entry.mRunWeight > entry.mBgWeight; in init()50 double amount = avg ? (statsForeground ? entry.mRunWeight : entry.mBgWeight) * weightToRam in init()
193 double rhsWeight = Math.max(rhs.mRunWeight, rhs.mBgWeight);194 double lhsWeight = Math.max(lhs.mRunWeight, lhs.mBgWeight);