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.java26 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()
155 proto.write(ProcessStatsStateProto.SAMPLE_SIZE, stats[statsIndex + PSS_SAMPLE_COUNT]); in writeStatsToProto()
DProcessState.java26 import static com.android.internal.app.procstats.ProcessStats.PSS_SAMPLE_COUNT;
365 && mTotalRunningPss[PSS_SAMPLE_COUNT] == 0); in hasAnyData()
686 return mPssTable.getValueForId((byte)state, PSS_SAMPLE_COUNT); in getPssSampleCount()
976 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpPss()
1014 pw.print(table[offset + PSS_SAMPLE_COUNT]); in dumpPssSamples()
1194 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpPackageProcCheckin()
1251 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpProcCheckin()
1314 pw.print(table[offset + PSS_SAMPLE_COUNT]); in dumpPssSamplesCheckin()
1416 if (mTotalRunningPss[PSS_SAMPLE_COUNT] != 0) { in dumpDebug()
DProcessStats.java96 public static final int PSS_SAMPLE_COUNT = 0; field in ProcessStats