Home
last modified time | relevance | path

Searched refs:logcatSource (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DLogcatOnFailureCollector.java193 try (InputStreamSource logcatSource = source) { in saveLogcatSource() argument
195 if (logcatSource.size() < 75L) { in saveLogcatSource()
199 logcatSource.size()); in saveLogcatSource()
203 super.testLog(name, LogDataType.LOGCAT, logcatSource); in saveLogcatSource()
/tools/test/graphicsbenchmark/functional_tests/hostside/src/com/android/game/qualification/test/
DMemoryTests.java79 InputStreamSource logcatSource = getDevice().getLogcat(); in testMemoryAllocationLimit() argument
80 …BufferedReader logcat = new BufferedReader(new InputStreamReader(logcatSource.createInputStream())… in testMemoryAllocationLimit()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java1350 try (InputStreamSource logcatSource = device.getLogcat()) { in reportLogs() argument
1352 if (logcatSource != null && logcatSource.size() > 0L) { in reportLogs()
1357 listener.testLog(name, LogDataType.LOGCAT, logcatSource); in reportLogs()