Home
last modified time | relevance | path

Searched refs:mLastCpuTime (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/am/
DProcessProfileRecord.java147 final AtomicLong mLastCpuTime = new AtomicLong(0); field in ProcessProfileRecord
740 final long lastCpuTime = mLastCpuTime.get(); in dumpCputime()
DAppProfiler.java319 private final AtomicLong mLastCpuTime = new AtomicLong(0); field in AppProfiler
2138 if (mLastCpuTime.get() >= now - MONITOR_CPU_MIN_TIME) { in updateCpuStats()
2157 && mLastCpuTime.get() < (now - MONITOR_CPU_MIN_TIME)) { in updateCpuStatsNow()
2158 mLastCpuTime.set(now); in updateCpuStatsNow()
2223 profile.mLastCpuTime.compareAndSet(0, curCpuTime); in updateCpuStatsNow()
2297 long nextCpuDelay = (mLastCpuTime.get() + MONITOR_CPU_MAX_TIME) - now; in run()
DProcessList.java4697 long lastCpuTime = r.mProfile.mLastCpuTime.get();
4843 long lastCpuTime = r.mProfile.mLastCpuTime.get();
DOomAdjuster.java3528 app.mProfile.mLastCpuTime.set(0); in applyOomAdjLSP()