Searched refs:uss (Results 1 – 2 of 2) sorted by relevance
/tools/tradefederation/core/test_framework/com/android/tradefed/device/metric/ |
D | ProcessMaxMemoryCollector.java | 91 Long uss = in collect() local 94 if (pss == null || uss == null) { in collect() 115 mUssMemoryPerProcess.get(device).get(proc).addNumericValue(uss); in collect() 120 if (procUss.getOrDefault(proc, 0L) < uss) { in collect() 121 procUss.put(proc, uss); in collect() 166 for (Entry<String, Long> uss : procUss.entrySet()) { in onEnd() 169 Measurements.newBuilder().setSingleInt(uss.getValue()).build()); in onEnd() 171 runData.addMetricForDevice(device, "MAX_USS#" + uss.getKey(), metric); in onEnd()
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | ProcrankItem.java | 58 public ProcrankValue(String processName, int vss, int rss, int pss, int uss) { in ProcrankValue() argument 63 mUss = uss; in ProcrankValue() 80 public void addProcrankLine(int pid, String processName, int vss, int rss, int pss, int uss) { in addProcrankLine() argument 81 mProcrankLines.put(pid, new ProcrankValue(processName, vss, rss, pss, uss)); in addProcrankLine()
|