Home
last modified time | relevance | path

Searched refs:workDir (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterCommandSchedulerTest.java1057 File workDir) {
1077 envVars.put("TF_WORK_DIR", workDir.getAbsolutePath());
1135 File workDir = null;
1138 workDir = new File(System.getProperty("java.io.tmpdir"), cmd.getAttemptId());
1159 verifyConfig(config, cmd, testEnvironment, testResources, workDir);
1161 if (workDir != null) {
1163 FileUtil.recursiveDelete(workDir);
1171 File workDir = null;
1174 workDir = new File(System.getProperty("java.io.tmpdir"), cmd.getAttemptId());
1195 verifyConfig(config, cmd, testEnvironment, testResources, workDir);
[all …]
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommandScheduler.java652 File workDir = null; in execManagedClusterCommand() local
654 workDir = new File(System.getProperty("java.io.tmpdir"), commandTask.getAttemptId()); in execManagedClusterCommand()
655 workDir.mkdirs(); in execManagedClusterCommand()
665 .setWorkDir(workDir) in execManagedClusterCommand()
675 handler.setWorkDir(workDir); in execManagedClusterCommand()
678 workDir = null; in execManagedClusterCommand()
680 if (workDir != null) { in execManagedClusterCommand()
681 FileUtil.recursiveDelete(workDir); in execManagedClusterCommand()
DSubprocessReportingHelper.java58 String commandLine, String classpath, File workDir, String port) { in SubprocessReportingHelper() argument
61 mWorkDir = workDir; in SubprocessReportingHelper()
DClusterCommandConfigBuilder.java104 public ClusterCommandConfigBuilder setWorkDir(File workDir) { in setWorkDir() argument
105 mWorkDir = workDir; in setWorkDir()