Home
last modified time | relevance | path

Searched refs:IScheduledInvocationListener (Results 1 – 10 of 10) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerTest.java30 import com.android.tradefed.command.ICommandScheduler.IScheduledInvocationListener;
359 IScheduledInvocationListener mockListener = EasyMock in testExecCommand()
360 .createMock(IScheduledInvocationListener.class); in testExecCommand()
782 IScheduledInvocationListener listener = in testDeviceReleasedEarly()
783 (IScheduledInvocationListener) getCurrentArguments()[3]; in testDeviceReleasedEarly()
835 IScheduledInvocationListener listener = in testDeviceReleasedEarly_conflict()
836 (IScheduledInvocationListener) getCurrentArguments()[3]; in testDeviceReleasedEarly_conflict()
1195 (IScheduledInvocationListener)EasyMock.anyObject()); in testExecCommand_multipleDevices()
1196 IScheduledInvocationListener mockListener = EasyMock in testExecCommand_multipleDevices()
1197 .createMock(IScheduledInvocationListener.class); in testExecCommand_multipleDevices()
[all …]
/tools/tradefederation/core/tests/src/com/android/tradefed/command/remote/
DRemoteManagerFuncTest.java20 import com.android.tradefed.command.ICommandScheduler.IScheduledInvocationListener;
258 mMockScheduler.execCommand((IScheduledInvocationListener)EasyMock.anyObject(), in testExecCommand()
284 mMockScheduler.execCommand((IScheduledInvocationListener)EasyMock.anyObject(), in testConsecutiveExecCommand()
302 mMockScheduler.execCommand((IScheduledInvocationListener)EasyMock.anyObject(), in testConsecutiveExecCommand()
440 mMockScheduler.execCommand((IScheduledInvocationListener)EasyMock.anyObject(), in testGetLastCommandResult_executing()
472 mMockScheduler.execCommand((IScheduledInvocationListener)EasyMock.anyObject(), in testGetLastCommandResult_notAvail()
478 IScheduledInvocationListener listener = in testGetLastCommandResult_notAvail()
479 (IScheduledInvocationListener) EasyMock.getCurrentArguments()[0]; in testGetLastCommandResult_notAvail()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandScheduler.java474 IScheduledInvocationListener {
480 IScheduledInvocationListener... listeners) { in FreeDeviceHandler()
507 ((IScheduledInvocationListener) listener) in invocationComplete()
550 private final IScheduledInvocationListener[] mListeners;
559 ExecutableCommand command, IScheduledInvocationListener... listeners) { in InvocationThread()
585 for (final IScheduledInvocationListener listener : mListeners) { in run()
643 for (final IScheduledInvocationListener listener : mListeners) { in run()
1527 IInvocationContext context, IScheduledInvocationListener listener, String[] args) in execCommand()
1554 IScheduledInvocationListener listener, ITestDevice device, String[] args) in execCommand()
1581 public void execCommand(IScheduledInvocationListener listener, String[] args) in execCommand()
[all …]
DICommandScheduler.java43 public static interface IScheduledInvocationListener extends ITestInvocationListener { interface
110 public void execCommand(IScheduledInvocationListener listener, String[] args) in execCommand()
122 public void execCommand(IScheduledInvocationListener listener, ITestDevice device, in execCommand()
136 IInvocationContext context, IScheduledInvocationListener listener, String[] args) in execCommand()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DTestInvocation.java24 import com.android.tradefed.command.ICommandScheduler.IScheduledInvocationListener;
166 private List<IScheduledInvocationListener> mSchedulerListeners = new ArrayList<>();
368 for (IScheduledInvocationListener scheduleListener : mSchedulerListeners) { in performInvocation()
722 if (listener instanceof IScheduledInvocationListener) { in invoke()
723 mSchedulerListeners.add((IScheduledInvocationListener) listener); in invoke()
/tools/tradefederation/core/src/com/android/tradefed/command/remote/
DExecCommandTracker.java18 import com.android.tradefed.command.ICommandScheduler.IScheduledInvocationListener;
32 class ExecCommandTracker implements IScheduledInvocationListener {
/tools/tradefederation/core/src/com/android/tradefed/device/recovery/
DRunConfigDeviceRecovery.java20 import com.android.tradefed.command.ICommandScheduler.IScheduledInvocationListener;
154 private class FreeDeviceHandler implements IScheduledInvocationListener {
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DTradefedSandboxRunner.java21 import com.android.tradefed.command.ICommandScheduler.IScheduledInvocationListener;
163 public static class StubScheduledInvocationListener implements IScheduledInvocationListener {
/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterCommandSchedulerTest.java195 public void execCommand(IScheduledInvocationListener listener, String[] args) in setUp()
851 public void execCommand(IScheduledInvocationListener listener, String[] args)
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandScheduler.java140 implements IScheduledInvocationListener, ITestSummaryListener {