HomeSort by relevance Sort by last modified time
    Searched refs:mBgDuration (Results 1 - 3 of 3) sorted by null

  /packages/apps/Settings/src/com/android/settings/applications/
ProcStatsPackageEntry.java 40 long mBgDuration;
61 mBgDuration = in.readLong();
77 float amountRunning = mBgDuration / (float) mWindowLength;
86 mBgDuration = mAvgBgMem = mMaxBgMem = 0;
93 mBgDuration = Math.max(entry.mBgDuration, mBgDuration);
142 dest.writeLong(mBgDuration);
ProcStatsEntry.java 44 final long mBgDuration;
66 mBgDuration = tmpBgTotals.totalTime;
69 mBgWeight = mAvgBgMem * (double) mBgDuration;
74 if (DEBUG) Log.d(TAG, "New proc entry " + proc.getName() + ": dur=" + mBgDuration
83 mBgDuration = mRunDuration = duration;
86 if (DEBUG) Log.d(TAG, "New proc entry " + procName + ": dur=" + mBgDuration
95 mBgDuration = in.readLong();
277 dest.writeLong(mBgDuration);
ProcessStatsDetail.java 195 long duration = Math.max(mApp.mRunDuration, mApp.mBgDuration);
251 long duration = Math.max(entry.mRunDuration, entry.mBgDuration);

Completed in 43 milliseconds