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.java19 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()
158 stats[statsIndex + PSS_AVERAGE], in writeStatsToProto()
DProcessState.java19 import static com.android.internal.app.procstats.ProcessStats.PSS_AVERAGE;
757 return mPssTable.getValueForId((byte)state, PSS_AVERAGE); in getPssAverage()
1079 DebugUtils.printSizeValue(pw, table[offset + PSS_AVERAGE] * 1024); in dumpPssSamples()
1407 pw.print(table[offset + PSS_AVERAGE]); in dumpPssSamplesCheckin()
DProcessStats.java99 public static final int PSS_AVERAGE = 2; field in ProcessStats