Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/device/cloud/
DManagedRemoteDevice.java59 public void preInvocationSetup(IBuildInfo info, MultiMap<String, String> attributes) in preInvocationSetup() method in ManagedRemoteDevice
62 super.preInvocationSetup(info, attributes); in preInvocationSetup()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DLocalAndroidVirtualDeviceTest.java449 mLocalAvd.preInvocationSetup(mMockBuildInfo, null); in testPreinvocationSetupSuccess()
500 mLocalAvd.preInvocationSetup(mMockBuildInfo, null); in testShutdown()
556 mLocalAvd.preInvocationSetup(mMockBuildInfo, null); in testPreInvocationSetupBootFailure()
606 mLocalAvd.preInvocationSetup(mMockBuildInfo, null); in testPreInvocationSetupFailure()
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/
DInvocationExecutionTest.java333 doAnswer(answer).when(mockDevice1).preInvocationSetup(any(), any()); in testRunPreInvocationSetup_parallel()
334 doAnswer(answer).when(mockDevice2).preInvocationSetup(any(), any()); in testRunPreInvocationSetup_parallel()
344 verify(mockDevice1).preInvocationSetup(any(), any()); in testRunPreInvocationSetup_parallel()
345 verify(mockDevice2).preInvocationSetup(any(), any()); in testRunPreInvocationSetup_parallel()
355 .preInvocationSetup(any(), any()); in testRunPreInvocationSetup_parallelException()
DSandboxedInvocationExecutionTest.java322 Mockito.verify(mMockDevice).preInvocationSetup(any(), any()); in testInvocation_sharding_notTests()
373 doThrow(exception).when(mMockDevice).preInvocationSetup(eq(info), any()); in testInvocation_preInvocationFailing()
386 Mockito.verify(mMockDevice).preInvocationSetup(any(), any()); in testInvocation_preInvocationFailing()
/tools/tradefederation/core/src/com/android/tradefed/device/
DLocalAndroidVirtualDevice.java96 public synchronized void preInvocationSetup( in preInvocationSetup() method in LocalAndroidVirtualDevice
101 super.preInvocationSetup(info, attributes); in preInvocationSetup()
DNativeDevice.java5281 public void preInvocationSetup(IBuildInfo info, MultiMap<String, String> attributes) in preInvocationSetup() method in NativeDevice
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/
DINativeDevice.java1544 public default void preInvocationSetup(IBuildInfo info, MultiMap<String, String> attributes) in preInvocationSetup() method
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java768 device.preInvocationSetup(buildInfos.get(i), context.getAttributes()); in runMultiVirtualDevicesPreInvocationSetup()
807 device.preInvocationSetup(context.getBuildInfo(deviceName), context.getAttributes()); in runSingleDevicePreInvocationSetup()