Home
last modified time | relevance | path

Searched refs:ret (Results 1 – 6 of 6) 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/libraries/tradefed-python-lib/tradefed_py/
Dadb_handler.py31 ret = proc.returncode
32 if ret == 0:
34 raise AdbError(cmd=cmd, stdout=out, stderr=err, ret_code=ret)
41 ret = proc.returncode
42 if ret == 0:
44 raise AdbError(cmd=cmd, stdout=out, stderr=err, ret_code=ret)
/platform_testing/tests/functional/devicehealthchecks/src/com/android/devicehealthchecks/
DCrashCheckBase.java145 StringBuilder ret = new StringBuilder(); in truncate() local
147 ret.append(lines[i]); in truncate()
148 ret.append('\n'); in truncate()
151 ret.append("... "); in truncate()
152 ret.append(lines.length - maxLines); in truncate()
153 ret.append(" more lines truncated ...\n"); in truncate()
155 return ret.toString(); in truncate()
/platform_testing/libraries/collectors-helper/system/src/com/android/helpers/
DProcLoadHelper.java135 Matcher ret = pattern.matcher(line); in matches() local
136 return ret.matches() ? ret : null; in matches()
/platform_testing/libraries/collectors-helper/memory/src/com/android/helpers/
DFreeMemHelper.java176 Matcher ret = pattern.matcher(line); in matches() local
177 return ret.matches() ? ret : null; in matches()