Home
last modified time | relevance | path

Searched refs:postInvocationTearDown (Results 1 – 13 of 13) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DManagedRemoteDevice.java67 public void postInvocationTearDown(Throwable exception) { in postInvocationTearDown() method in ManagedRemoteDevice
75 super.postInvocationTearDown(exception); in postInvocationTearDown()
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java1556 public default void postInvocationTearDown() { in postInvocationTearDown() method
1557 postInvocationTearDown(null); in postInvocationTearDown()
1566 public void postInvocationTearDown(Throwable invocationException); in postInvocationTearDown() method
/tools/tradefederation/core/javatests/com/android/tradefed/device/cloud/
DManagedRemoteDeviceTest.java81 mDevice.postInvocationTearDown(null); in testGetOptions()
DNestedRemoteDeviceTest.java83 mDevice.postInvocationTearDown(null); in tearDown()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DLocalAndroidVirtualDeviceTest.java463 mLocalAvd.postInvocationTearDown(null); in testPreinvocationSetupSuccess()
520 mLocalAvd.postInvocationTearDown(null); in testShutdown()
573 mLocalAvd.postInvocationTearDown(expectedException); in testPreInvocationSetupBootFailure()
623 mLocalAvd.postInvocationTearDown(expectedException); in testPreInvocationSetupFailure()
DTestDeviceTest.java5843 mTestDevice.postInvocationTearDown(null); in testPostInvocationWifiTearDown()
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/
DSandboxedInvocationExecutionTest.java323 Mockito.verify(mMockDevice).postInvocationTearDown(null); in testInvocation_sharding_notTests()
387 Mockito.verify(mMockDevice).postInvocationTearDown(exception); in testInvocation_preInvocationFailing()
DTestInvocationTest.java651 verify(mMockDevice, atLeast(0)).postInvocationTearDown(null); in verifyMockListeners()
653 verify(mMockDevice, atLeast(0)).postInvocationTearDown(throwable); in verifyMockListeners()
/tools/tradefederation/core/src/com/android/tradefed/device/
DLocalAndroidVirtualDevice.java147 public synchronized void postInvocationTearDown(Throwable exception) { in postInvocationTearDown() method in LocalAndroidVirtualDevice
176 super.postInvocationTearDown(exception); in postInvocationTearDown()
DTestDevice.java2406 public void postInvocationTearDown(Throwable exception) { in postInvocationTearDown() method in TestDevice
2407 super.postInvocationTearDown(exception); in postInvocationTearDown()
DNativeDevice.java5326 public void postInvocationTearDown(Throwable exception) { in postInvocationTearDown() method in NativeDevice
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java841 device.postInvocationTearDown(exception); in runDevicePostInvocationTearDown()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandScheduler.java913 device.postInvocationTearDown(null); in stopInvocation()