Home | History | Annotate | Download | only in aupt

Lines Matching defs:records

88         List<MemHealthRecord> records = new ArrayList<>();
109 records.add(new MemHealthRecord(
115 return records;
129 List<MemHealthRecord> records = entry.getValue();
131 List<Long> nativeHeap = getForegroundNativeHeap(records);
132 List<Long> dalvikHeap = getForegroundDalvikHeap(records);
133 List<Long> pss = getForegroundPss(records);
134 List<Long> asJavaHeap = getForegroundSummaryJavaHeap(records);
135 List<Long> asNativeHeap = getForegroundSummaryNativeHeap(records);
136 List<Long> asCode = getForegroundSummaryCode(records);
137 List<Long> asStack = getForegroundSummaryStack(records);
138 List<Long> asGraphics = getForegroundSummaryGraphics(records);
139 List<Long> asOther = getForegroundSummaryOther(records);
140 List<Long> asSystem = getForegroundSummarySystem(records);
141 List<Long> asOverallPss = getForegroundSummaryOverallPss(records);
170 List<MemHealthRecord> records = entry.getValue();
172 List<Long> nativeHeap = getBackgroundNativeHeap(records);
173 List<Long> dalvikHeap = getBackgroundDalvikHeap(records);
174 List<Long> pss = getBackgroundPss(records);
175 List<Long> asJavaHeap = getBackgroundSummaryJavaHeap(records);
176 List<Long> asNativeHeap = getBackgroundSummaryNativeHeap(records);
177 List<Long> asCode = getBackgroundSummaryCode(records);
178 List<Long> asStack = getBackgroundSummaryStack(records);
179 List<Long> asGraphics = getBackgroundSummaryGraphics(records);
180 List<Long> asOther = getBackgroundSummaryOther(records);
181 List<Long> asSystem = getBackgroundSummarySystem(records);
182 List<Long> asOverallPss = getBackgroundSummaryOverallPss(records);
506 Map<String, List<MemHealthRecord>> records = new HashMap<>();
510 if (!records.containsKey(record.mProcName)) {
511 records.put(record.mProcName, new ArrayList<MemHealthRecord>());
514 records.get(record.mProcName).add(record);
518 return records;