Home
last modified time | relevance | path

Searched refs:ret (Results 1 – 5 of 5) sorted by relevance

/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DMemHealthRecord.java231 List<Long> ret = new ArrayList<>(samples.size()); in getForegroundDalvikHeap() local
234 ret.add(sample.mDalvikHeap); in getForegroundDalvikHeap()
237 return ret; in getForegroundDalvikHeap()
241 List<Long> ret = new ArrayList<>(samples.size()); in getBackgroundDalvikHeap() local
244 ret.add(sample.mDalvikHeap); in getBackgroundDalvikHeap()
247 return ret; in getBackgroundDalvikHeap()
251 List<Long> ret = new ArrayList<>(samples.size()); in getForegroundNativeHeap() local
254 ret.add(sample.mNativeHeap); in getForegroundNativeHeap()
257 return ret; in getForegroundNativeHeap()
261 List<Long> ret = new ArrayList<>(samples.size()); in getBackgroundNativeHeap() local
[all …]
DProcessStatusTracker.java77 List<ProcessDetails> ret = new ArrayList<ProcessDetails>(); in getProcessDetails() local
83 return ret; in getProcessDetails()
113 ret.add(detail); in getProcessDetails()
126 ret.add(detail); in getProcessDetails()
128 return ret; in getProcessDetails()
/platform_testing/tests/functional/devicehealthchecks/src/com/android/devicehealthchecks/
DCrashCheckBase.java91 StringBuilder ret = new StringBuilder(); in truncate() local
93 ret.append(lines[i]); in truncate()
94 ret.append('\n'); in truncate()
97 ret.append("... "); in truncate()
98 ret.append(lines.length - maxLines); in truncate()
99 ret.append(" more lines truncated ...\n"); in truncate()
101 return ret.toString(); in truncate()
/platform_testing/libraries/collectors-helper/system/src/com/android/helpers/
DProcLoadHelper.java134 Matcher ret = pattern.matcher(line); in matches() local
135 return ret.matches() ? ret : null; in matches()
/platform_testing/libraries/collectors-helper/memory/src/com/android/helpers/
DFreeMemHelper.java166 Matcher ret = pattern.matcher(line); in matches() local
167 return ret.matches() ? ret : null; in matches()