Home
last modified time | relevance | path

Searched refs:stopInvocation (Results 1 – 7 of 7) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/command/
DICommandScheduler.java253 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
DCommandScheduler.java575 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()
DConsole.java727 if (mScheduler.stopInvocation(invocId)) { in addDefaultCommands()
/tools/tradefederation/core/src/com/android/tradefed/service/management/
DTestInvocationManagementServer.java230 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/
DTestInvocationManagementServerTest.java224 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/
DClusterCommandScheduler.java483 .ifPresent(invocationId -> stopInvocation(invocationId, cause)); in run()
/tools/tradefederation/core/javatests/com/android/tradefed/cluster/
DClusterCommandSchedulerTest.java968 public boolean stopInvocation(int invocationId, String cause) {