Searched refs:mBgWeight (Results 1 – 6 of 6) sorted by relevance
44 double mBgWeight; field in ProcStatsPackageEntry65 mBgWeight = in.readDouble(); in ProcStatsPackageEntry()88 mBgWeight = 0; in updateMetrics()96 mBgWeight += entry.mBgWeight; in updateMetrics()147 dest.writeDouble(mBgWeight); in writeToParcel()
49 final double mBgWeight; field in ProcStatsEntry71 mBgWeight = mAvgBgMem * (double) mBgDuration; in ProcStatsEntry()77 + " avgpss=" + mAvgBgMem + " weight=" + mBgWeight); in ProcStatsEntry()87 mBgWeight = mRunWeight = ((double)memDuration) * mem; in ProcStatsEntry()89 + " avgpss=" + mAvgBgMem + " weight=" + mBgWeight); in ProcStatsEntry()100 mBgWeight = in.readDouble(); in ProcStatsEntry()286 dest.writeDouble(mBgWeight); in writeToParcel()
50 boolean statsForeground = entry.mRunWeight > entry.mBgWeight; in init()51 double amount = avg ? (statsForeground ? entry.mRunWeight : entry.mBgWeight) * weightToRam in init()
202 boolean statsForeground = mApp.mRunWeight > mApp.mBgWeight; in createDetails()203 double avgRam = (statsForeground ? mApp.mRunWeight : mApp.mBgWeight) * mWeightToRam; in createDetails()271 (long) (entry.mBgWeight * mWeightToRam)); in fillProcessesSection()
187 double rhsWeight = Math.max(rhs.mRunWeight, rhs.mBgWeight);188 double lhsWeight = Math.max(lhs.mRunWeight, lhs.mBgWeight);
1390 double amount = Math.max(entry.mRunWeight, entry.mBgWeight)