Home
last modified time | relevance | path

Searched refs:PSS_AVERAGE (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/procstats/
DPssTable.java24 import static com.android.internal.app.procstats.ProcessStats.PSS_AVERAGE;
84 thatStats[thatStatsIndex + PSS_AVERAGE], in mergeStats()
102 stats[statsIndex + PSS_AVERAGE] = avgPss; in mergeStats()
117 stats[statsIndex + PSS_AVERAGE] = (long)(((stats[statsIndex + PSS_AVERAGE] in mergeStats()
159 stats[statsIndex + PSS_AVERAGE], in writeStatsToProto()
DProcessState.java35 import static com.android.internal.app.procstats.ProcessStats.PSS_AVERAGE;
692 return mPssTable.getValueForId((byte)state, PSS_AVERAGE); in getPssAverage()
996 DebugUtils.printSizeValue(pw, table[offset + PSS_AVERAGE] * 1024); in dumpPssSamples()
1316 pw.print(table[offset + PSS_AVERAGE]); in dumpPssSamplesCheckin()
DProcessStats.java90 public static final int PSS_AVERAGE = 2; field in ProcessStats