Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/app/procstats/
DPssTable.java22 import static com.android.internal.app.procstats.ProcessStats.PSS_SAMPLE_COUNT;
82 mergeStats(stats, statsIndex, (int)thatStats[thatStatsIndex + PSS_SAMPLE_COUNT], in mergeStats()
98 final long count = stats[statsIndex + PSS_SAMPLE_COUNT]; in mergeStats()
100 stats[statsIndex + PSS_SAMPLE_COUNT] = inCount; in mergeStats()
111 stats[statsIndex + PSS_SAMPLE_COUNT] = count + inCount; in mergeStats()
156 proto.write(ProcessStatsStateProto.SAMPLE_SIZE, stats[statsIndex + PSS_SAMPLE_COUNT]); in writeStatsToProto()
DProcessState.java42 import static com.android.internal.app.procstats.ProcessStats.PSS_SAMPLE_COUNT;
363 && mTotalRunningPss[PSS_SAMPLE_COUNT] == 0); in hasAnyData()
684 return mPssTable.getValueForId((byte)state, PSS_SAMPLE_COUNT); in getPssSampleCount()
974 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpPss()
1012 pw.print(table[offset + PSS_SAMPLE_COUNT]); in dumpPssSamples()
1192 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpPackageProcCheckin()
1249 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpProcCheckin()
1312 pw.print(table[offset + PSS_SAMPLE_COUNT]); in dumpPssSamplesCheckin()
1414 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in writeToProto()
DProcessStats.java88 public static final int PSS_SAMPLE_COUNT = 0; field in ProcessStats