Home
last modified time | relevance | path

Searched refs:getLogcat (Results 1 – 9 of 9) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationTest.java428 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(2); in testInvoke_buildFailed()
460 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(2); in testInvoke_buildFailed_runtimeException()
494 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(2); in testInvoke_noBuild()
534 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(2); in testInvoke_noBuild_noHostLog()
903 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(3); in testInvoke_testtag()
936 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(3); in testInvoke_testtag_notset()
966 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(3); in testInvoke_notesttag()
1010 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(3); in testInvoke_buildProviderNeedTestTag()
1067 EasyMock.expect(mMockDevice.getLogcat()).andReturn(EMPTY_STREAM_SOURCE).times(3); in setupInvokeWithBuild()
DSandboxedInvocationExecutionTest.java133 doReturn(new ByteArrayInputStreamSource("".getBytes())).when(mMockDevice).getLogcat(); in setUp()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java858 public InputStreamSource getLogcat(); in getLogcat() method
883 public InputStreamSource getLogcat(int maxBytes); in getLogcat() method
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DCodeCoverageTest.java93 try (InputStreamSource s = getDevice().getLogcat(500 * 1024)) { in run()
/tools/test/graphicsbenchmark/functional_tests/hostside/src/com/android/game/qualification/test/
DMemoryTests.java81 InputStreamSource logcatSource = getDevice().getLogcat(); in testMemoryAllocationLimit()
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DManagedRemoteDevice.java105 try (InputStreamSource logcatSource = getLogcat()) { in postInvocationTearDown()
DRemoteAndroidVirtualDevice.java159 try (InputStreamSource logcatSource = getLogcat()) { in postInvocationTearDown()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java2248 public InputStreamSource getLogcat() { in getLogcat() method in NativeDevice
2261 public InputStreamSource getLogcat(int maxBytes) { in getLogcat() method in NativeDevice
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java660 try (InputStreamSource logcatSource = device.getLogcat()) { in reportLogs()