HomeSort by relevance Sort by last modified time
    Searched defs:mRunWeight (Results 1 - 2 of 2) sorted by null

  /packages/apps/Settings/src/com/android/settings/applications/
ProcStatsPackageEntry.java 48 double mRunWeight;
69 mRunWeight = in.readDouble();
90 mRunWeight = 0;
99 mRunWeight += entry.mRunWeight;
151 dest.writeDouble(mRunWeight);
ProcStatsEntry.java 53 final double mRunWeight;
75 mRunWeight = mAvgRunMem * (double) mRunDuration;
87 mBgWeight = mRunWeight = ((double)memDuration) * mem;
104 mRunWeight = in.readDouble();
169 if (subProcs.get(0).mRunWeight > (subProcs.get(1).mRunWeight *3)) {
171 + subProcs.get(0).mPackage + " weight " + subProcs.get(0).mRunWeight
173 + " weight " + subProcs.get(1).mRunWeight);
180 double maxWeight = subProcs.get(0).mRunWeight;
185 if (subProc.mRunWeight < (maxWeight/2))
    [all...]

Completed in 63 milliseconds