Home
last modified time | relevance | path

Searched refs:getLogcatData (Results 1 – 8 of 8) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/
DILogcatReceiver.java32 public InputStreamSource getLogcatData(); in getLogcatData() method
34 public InputStreamSource getLogcatData(int maxBytes); in getLogcatData() method
43 public default InputStreamSource getLogcatData(int maxBytes, int offset) { in getLogcatData() method
44 return getLogcatData(maxBytes); in getLogcatData()
DLogcatReceiver.java76 public InputStreamSource getLogcatData() { in getLogcatData() method in LogcatReceiver
82 public InputStreamSource getLogcatData(int maxBytes) { in getLogcatData() method in LogcatReceiver
87 public InputStreamSource getLogcatData(int maxBytes, int offset) { in getLogcatData() method in LogcatReceiver
DNativeDevice.java2151 return mLogcatReceiver.getLogcatData(); in getLogcat()
2164 return mLogcatReceiver.getLogcatData(maxBytes); in getLogcat()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/metric/
DLogcatOnFailureCollectorTest.java109 EasyMock.expect(mMockReceiver.getLogcatData()) in testCollect()
112 EasyMock.expect(mMockReceiver.getLogcatData(EasyMock.anyInt(), EasyMock.eq(3))) in testCollect()
161 EasyMock.expect(mMockReceiver.getLogcatData()) in testCollect_multiRun()
164 EasyMock.expect(mMockReceiver.getLogcatData(EasyMock.anyInt(), EasyMock.eq(3))) in testCollect_multiRun()
180 EasyMock.expect(mMockReceiver.getLogcatData()) in testCollect_multiRun()
183 EasyMock.expect(mMockReceiver.getLogcatData(EasyMock.anyInt(), EasyMock.eq(3))) in testCollect_multiRun()
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DLogcatOnFailureCollector.java50 int offset = (int) mLogcatReceivers.get(device).getLogcatData().size(); in onTestRunStart()
71 .getLogcatData(MAX_LOGAT_SIZE_BYTES, mOffset.get(device))) { in onTestFail()
/tools/tradefederation/contrib/src/com/android/performance/tests/
DAppTransitionTests.java429 try (InputStreamSource logcatData = logReceiver.getLogcatData()) { in stopEventsLogs()
502 try (InputStreamSource logcatData = mLaunchEventsLogs.getLogcatData(); in parseTransitionDelayInfo()
517 try (InputStreamSource logcatData = mLaunchEventsLogs.getLogcatData(); in parseLatencyInfo()
DHermeticLaunchTest.java377 try (InputStreamSource input = mLogcat.getLogcatData(); in analyzeLogCatData()
/tools/tradefederation/core/src/com/android/tradefed/log/
DLogReceiver.java71 public InputStreamSource getLogcatData(int maxBytes) { in getLogcatData() method in LogReceiver