Home
last modified time | relevance | path

Searched refs:invocationId (Results 1 – 12 of 12) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/service/management/
DTestInvocationManagementServer.java70 public final long invocationId; field in TestInvocationManagementServer.InvocationInformation
74 long invocationId, ScheduledInvocationForwarder scheduledInvocationForwarder) { in InvocationInformation() argument
75 this.invocationId = invocationId; in InvocationInformation()
166 long invocationId = -1; in submitTestCommand() local
168 invocationId = mCommandScheduler.execCommand(forwarder, command); in submitTestCommand()
170 invocationId = mCommandScheduler.execCommand(forwarder, devices, command); in submitTestCommand()
172 if (invocationId == -1) { in submitTestCommand()
179 mTracker.put(trackerId, new InvocationInformation(invocationId, forwarder)); in submitTestCommand()
203 String invocationId = request.getInvocationId(); in getInvocationDetail() local
204 if (mTracker.containsKey(invocationId)) { in getInvocationDetail()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/command/
DICommandScheduler.java261 public default boolean stopInvocation(int invocationId) throws UnsupportedOperationException { in stopInvocation() argument
262 return stopInvocation(invocationId, null); in stopInvocation()
273 public boolean stopInvocation(int invocationId, String cause) in stopInvocation() argument
282 public String getInvocationInfo(int invocationId); in getInvocationInfo() argument
DCommandScheduler.java2038 int invocationId = cmd.getCommandTracker().getId(); in startInvocation() local
2039 CLog.d("starting invocation for command id %d", invocationId); in startInvocation()
2053 IInvocationContext.INVOCATION_ID, Integer.toString(invocationId)); in startInvocation()
2329 public synchronized boolean stopInvocation(int invocationId, String cause) { in stopInvocation() argument
2332 if (thread.mCmd.getCommandTracker().mId == invocationId) { in stopInvocation()
2334 cause = "User requested stopping invocation " + invocationId; in stopInvocation()
2340 CLog.w("No invocation found matching the id: %s", invocationId); in stopInvocation()
2346 public synchronized String getInvocationInfo(int invocationId) { in getInvocationInfo() argument
2348 if (thread.mCmd.getCommandTracker().mId == invocationId) { in getInvocationInfo()
2353 CLog.w("No invocation found matching the id: %s", invocationId); in getInvocationInfo()
/tools/tradefederation/core/src/com/android/tradefed/config/filter/
DGetPreviousPassedHelper.java61 String invocationId = invocationData.get("invocation_id"); in getPreviousPassedFilters() local
62 if (!Strings.isNullOrEmpty(invocationId)) { in getPreviousPassedFilters()
63 args.put("invocation_id", invocationId); in getPreviousPassedFilters()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DDynamicShardHelper.java61 String invocationId = testInfo.getContext().getAttribute("invocation_id"); in shardConfig() local
85 if (Strings.isNullOrEmpty(invocationId)) { in shardConfig()
120 String poolId = String.format("invocation-%s", invocationId); in shardConfig()
/tools/tradefederation/core/javatests/com/android/tradefed/service/management/
DTestInvocationManagementServerTest.java231 String invocationId = response.getInvocationId(); in testSubmitTestCommand_andStop() local
232 assertThat(invocationId).isNotEmpty(); in testSubmitTestCommand_andStop()
236 .setInvocationId(invocationId) in testSubmitTestCommand_andStop()
/tools/asuite/atest/logstorage/
Dlogstorage_utils.py246 .list(invocationId=invocation['invocationId'], maxResults=10)
Dlog_uploader.py120 invocationId=self._invocation_id,
/tools/asuite/atest/test_runners/
Dmobly_test_runner.py276 invocationId=self._invocation['invocationId'],
299 invocationId=invocation_id,
/tools/test/mobly_extensions/tools/results_uploader/src/
Dresultstore_client.py134 invocationId=self._invocation_id,
/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) {