Searched refs:stopInvocation (Results 1 – 7 of 7) sorted by relevance
/tools/tradefederation/core/src/com/android/tradefed/command/ |
D | ICommandScheduler.java | 253 public boolean stopInvocation(ITestInvocation invocation) throws UnsupportedOperationException; in stopInvocation() method 261 public default boolean stopInvocation(int invocationId) throws UnsupportedOperationException { in stopInvocation() method 262 return stopInvocation(invocationId, null); in stopInvocation() 273 public boolean stopInvocation(int invocationId, String cause) in stopInvocation() method
|
D | CommandScheduler.java | 575 mInvocationThread.stopInvocation( in run() 887 public void stopInvocation(String message) { in stopInvocation() method in CommandScheduler.InvocationThread 888 stopInvocation(message, null); in stopInvocation() 895 public void stopInvocation(String message, ErrorIdentifier errorId) { in stopInvocation() method in CommandScheduler.InvocationThread 967 stopInvocation( in checkDeviceBatteryLevel() 2233 thread.stopInvocation(reason, error); in shutdownHard() 2317 public synchronized boolean stopInvocation(ITestInvocation invocation) { in stopInvocation() method in CommandScheduler 2329 public synchronized boolean stopInvocation(int invocationId, String cause) { in stopInvocation() method in CommandScheduler 2336 thread.stopInvocation(cause); in stopInvocation()
|
D | Console.java | 727 if (mScheduler.stopInvocation(invocId)) { in addDefaultCommands()
|
/tools/tradefederation/core/src/com/android/tradefed/service/management/ |
D | TestInvocationManagementServer.java | 230 public void stopInvocation( in stopInvocation() method in TestInvocationManagementServer 238 mCommandScheduler.stopInvocation((int) realInvocationId, request.getReason()); in stopInvocation()
|
/tools/tradefederation/core/javatests/com/android/tradefed/service/management/ |
D | TestInvocationManagementServerTest.java | 224 when(mMockScheduler.stopInvocation(Mockito.anyInt(), Mockito.any())).thenReturn(true); in testSubmitTestCommand_andStop() 238 mServer.stopInvocation(stopRequest.build(), mStopInvocationObserver); in testSubmitTestCommand_andStop()
|
/tools/tradefederation/core/src/com/android/tradefed/cluster/ |
D | ClusterCommandScheduler.java | 483 .ifPresent(invocationId -> stopInvocation(invocationId, cause)); in run()
|
/tools/tradefederation/core/javatests/com/android/tradefed/cluster/ |
D | ClusterCommandSchedulerTest.java | 968 public boolean stopInvocation(int invocationId, String cause) {
|