/tools/tradefederation/core/src/com/android/tradefed/service/management/ |
D | TestInvocationManagementServer.java | 70 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/ |
D | ICommandScheduler.java | 261 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
|
D | CommandScheduler.java | 2038 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/ |
D | GetPreviousPassedHelper.java | 61 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/ |
D | DynamicShardHelper.java | 61 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/ |
D | TestInvocationManagementServerTest.java | 231 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/ |
D | logstorage_utils.py | 246 .list(invocationId=invocation['invocationId'], maxResults=10)
|
D | log_uploader.py | 120 invocationId=self._invocation_id,
|
/tools/asuite/atest/test_runners/ |
D | mobly_test_runner.py | 276 invocationId=self._invocation['invocationId'], 299 invocationId=invocation_id,
|
/tools/test/mobly_extensions/tools/results_uploader/src/ |
D | resultstore_client.py | 134 invocationId=self._invocation_id,
|
/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) {
|