Searched refs:ret (Results 1 – 8 of 8) sorted by relevance
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
D | MemHealthRecord.java | 231 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 …]
|
D | ProcessStatusTracker.java | 77 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/tapl-common/src/android/platform/test/scenario/tapl_common/ |
D | TaplUiObject.kt | 54 val ret: Rect = uiObject.visibleBounds in getVisibleBoundsForGestures() constant 55 ret.left = ret.left + mMarginLeft in getVisibleBoundsForGestures() 56 ret.top = ret.top + mMarginTop in getVisibleBoundsForGestures() 57 ret.right = ret.right - mMarginRight in getVisibleBoundsForGestures() 58 ret.bottom = ret.bottom - mMarginBottom in getVisibleBoundsForGestures() 59 return ret in getVisibleBoundsForGestures()
|
/platform_testing/libraries/health/rules/src/android/platform/test/rule/ |
D | SystemHealthRule.java | 71 StringBuilder ret = new StringBuilder(); 73 ret.append(lines[i]); 74 ret.append('\n'); 77 ret.append("... "); 78 ret.append(lines.length - maxLines); 79 ret.append(" more lines truncated ...\n"); 81 return ret.toString();
|
/platform_testing/tests/functional/devicehealthchecks/src/com/android/devicehealthchecks/ |
D | CrashCheckBase.java | 146 StringBuilder ret = new StringBuilder(); in truncate() local 148 ret.append(lines[i]); in truncate() 149 ret.append('\n'); in truncate() 152 ret.append("... "); in truncate() 153 ret.append(lines.length - maxLines); in truncate() 154 ret.append(" more lines truncated ...\n"); in truncate() 156 return ret.toString(); in truncate()
|
/platform_testing/libraries/collectors-helper/system/src/com/android/helpers/ |
D | ProcLoadHelper.java | 140 Matcher ret = pattern.matcher(line); in matches() local 141 return ret.matches() ? ret : null; in matches()
|
/platform_testing/libraries/sts-common-util/host-side/src/com/android/sts/common/ |
D | RootcanalUtils.java | 370 ByteArrayOutputStream ret = new ByteArrayOutputStream(); in readHciPacket() local 376 ret.write(typeBuf); in readHciPacket() 387 ret.write(hdrBuf, 0, 3); in readHciPacket() 393 ret.write(hdrBuf, 0, 4); in readHciPacket() 399 ret.write(hdrBuf, 0, 2); in readHciPacket() 405 ret.write(hdrBuf, 0, 4); in readHciPacket() 416 ret.write(data, 0, dataLength); in readHciPacket() 418 return ret.toByteArray(); in readHciPacket()
|
/platform_testing/libraries/collectors-helper/memory/src/com/android/helpers/ |
D | FreeMemHelper.java | 176 Matcher ret = pattern.matcher(line); in matches() local 177 return ret.matches() ? ret : null; in matches()
|