Home
last modified time | relevance | path

Searched refs:CurrentInvocation (Results 1 – 13 of 13) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/invoker/
DTestInvocation.java47 import com.android.tradefed.invoker.logger.CurrentInvocation;
48 import com.android.tradefed.invoker.logger.CurrentInvocation.InvocationInfo;
306 CurrentInvocation.setActionInProgress(ActionInProgress.TEAR_DOWN); in performInvocation()
360 CurrentInvocation.setActionInProgress(ActionInProgress.FREE_RESOURCES); in performInvocation()
419 CurrentInvocation.clearInvocationInfos(); in performInvocation()
439 CurrentInvocation.setActionInProgress(ActionInProgress.SETUP); in prepareAndRun()
443 CurrentInvocation.setActionInProgress(ActionInProgress.TEST); in prepareAndRun()
446 CurrentInvocation.setActionInProgress(ActionInProgress.UNSET); in prepareAndRun()
488 CurrentInvocation.createFailure(exception.getMessage(), id) in createFailureFromException()
624 CurrentInvocation.setActionInProgress(ActionInProgress.FETCHING_ARTIFACTS); in invokeFetchBuild()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/build/
DDependenciesResolver.java25 import com.android.tradefed.invoker.logger.CurrentInvocation;
26 import com.android.tradefed.invoker.logger.CurrentInvocation.InvocationInfo;
92 CurrentInvocation.getInfo(InvocationInfo.WORK_FOLDER)); in getBuild()
124 return CurrentInvocation.getInvocationFiles(); in getInvocationFiles()
DBootstrapBuildProvider.java28 import com.android.tradefed.invoker.logger.CurrentInvocation;
29 import com.android.tradefed.invoker.logger.CurrentInvocation.InvocationInfo;
138 CurrentInvocation.getInfo(InvocationInfo.WORK_FOLDER)); in getBuild()
169 return CurrentInvocation.getInvocationFiles(); in getInvocationFiles()
DFileDownloadCache.java20 import com.android.tradefed.invoker.logger.CurrentInvocation;
21 import com.android.tradefed.invoker.logger.CurrentInvocation.InvocationInfo;
410 remotePath, CurrentInvocation.getInfo(InvocationInfo.WORK_FOLDER)); in copyFile()
/tools/tradefederation/core/invocation_interfaces/com/android/tradefed/invoker/logger/
DCurrentInvocation.java37 public class CurrentInvocation { class
55 private CurrentInvocation() {} in CurrentInvocation() method in CurrentInvocation
69 new ConcurrentHashMap<ThreadGroup, CurrentInvocation.InternalInvocationTracking>();
DInvocationLocal.java66 return CurrentInvocation.getLocal(this); in get()
/tools/tradefederation/core/src/com/android/tradefed/sandbox/
DTradefedSandbox.java29 import com.android.tradefed.invoker.logger.CurrentInvocation;
30 import com.android.tradefed.invoker.logger.CurrentInvocation.InvocationInfo;
524 File workfolder = CurrentInvocation.getInfo(InvocationInfo.WORK_FOLDER); in getWorkFolder()
/tools/tradefederation/core/src/com/android/tradefed/config/
DDynamicRemoteFileResolver.java23 import com.android.tradefed.invoker.logger.CurrentInvocation;
24 import com.android.tradefed.invoker.logger.CurrentInvocation.InvocationInfo;
359 CurrentInvocation.getInfo(InvocationInfo.WORK_FOLDER)); in unzipIfRequired()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DModuleDefinition.java39 import com.android.tradefed.invoker.logger.CurrentInvocation;
713 CurrentInvocation.createFailure( in reportFinalResults()
1131 CurrentInvocation.createFailure(StreamUtil.getStackTrace(setupException), null); in reportSetupFailure()
DGranularRetriableTestWrapper.java28 import com.android.tradefed.invoker.logger.CurrentInvocation;
361 CurrentInvocation.createFailure(exception.getMessage(), null).setCause(exception); in createFromException()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DJavaCodeCoverageListener.java24 import com.android.tradefed.invoker.logger.CurrentInvocation;
213 return CurrentInvocation.createFailure(message, InfraErrorIdentifier.CODE_COVERAGE_ERROR); in createCodeCoverageFailure()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/logger/
DCurrentInvocationTest.java34 CurrentInvocation.createFailure("failure", InfraErrorIdentifier.UNDETERMINED); in testCreateFailure()
DInvocationLocalTest.java110 CurrentInvocation.clearInvocationInfos(); in invocation()