Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/memory/src/com/android/helpers/
DProcessShowmapHelper.java66 long pss; field in ProcessShowmapHelper.ShowmapMetrics
106 showmapFinalMap.put(constructKey(processName, PSS), endMetrics.pss); in getMetrics()
116 constructKey(processName, PSS, DELTA), endMetrics.pss - startMetrics.pss); in getMetrics()
193 metrics.pss = sc.nextLong(); in sampleMemory()
DTotalPssHelper.java105 long pss = 0; in measureMemory() local
109 pss = getPss(processName); in measureMemory()
110 pssData.add(pss); in measureMemory()
114 mPssFinalMap.put(constructKey(PSS_METRIC_PREFIX, processName), pss * 1024); in measureMemory()
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DMemHealthRecord.java54 public MemHealthRecord(String procName, long timeMs, long dalvikHeap, long nativeHeap, long pss, in MemHealthRecord() argument
62 mPss = pss; in MemHealthRecord()
76 long nativeHeap, long pss, boolean inForeground) { in MemHealthRecord() argument
77 this(procName, timeMs, dalvikHeap, nativeHeap, pss, 0, 0, 0, 0, 0, 0, 0, 0, inForeground); in MemHealthRecord()
94 int pss = parseMeminfoLine(meminfo, "TOTAL\\s+(\\d+)"); in get() local
105 if (nativeHeap < 0 || dalvikHeap < 0 || pss < 0) { in get()
110 procName, timeMs, dalvikHeap, nativeHeap, pss, asJavaHeap, in get()
133 List<Long> pss = getForegroundPss(records); in saveVerbose() local
151 out.printf("Average PSS: %d\n", getAverage(pss)); in saveVerbose()
154 out.printf("Peak PSS: %d\n", getMax(pss)); in saveVerbose()
[all …]
DAuptTestRunner.java326 private void recordDumpheap(String proc, long pss) throws IOException {
339 if (pss > mDumpheapThreshold && count < mMaxDumpheaps &&