/tools/asuite/asuite_plugin/src/test/unittests/ |
D | CommandRunnerTest.java | 46 GeneralCommandLine commandLine = (GeneralCommandLine) field.get(lsCommand); in testCommandRunnerByLs() local 47 Assert.assertSame(commandLine.getCharset(), StandardCharsets.UTF_8); in testCommandRunnerByLs() 48 Assert.assertEquals(commandLine.getCommandLineString(), "ls"); in testCommandRunnerByLs() 57 GeneralCommandLine commandLine = (GeneralCommandLine) field.get(lsCommand); in testCommandRunnerByTarget() local 58 Assert.assertSame(commandLine.getCharset(), StandardCharsets.UTF_8); in testCommandRunnerByTarget() 60 commandLine.getCommandLineString(), in testCommandRunnerByTarget()
|
/tools/tradefederation/core/javatests/com/android/tradefed/observatory/ |
D | TestDiscoveryInvokerTest.java | 111 String commandLine = in testSuccessTestDependencyDiscovery() local 124 when(mConfiguration.getCommandLine()).thenReturn(commandLine); in testSuccessTestDependencyDiscovery() 190 String commandLine = in testFailTestDependencyDiscovery() local 203 when(mConfiguration.getCommandLine()).thenReturn(commandLine); in testFailTestDependencyDiscovery() 238 String commandLine = in testTestDependencyDiscovery_NoConfigNameInArgs() local 251 when(mConfiguration.getCommandLine()).thenReturn(commandLine); in testTestDependencyDiscovery_NoConfigNameInArgs() 329 String commandLine = in testTestMappingDependencyDiscovery() local 337 when(mConfiguration.getCommandLine()).thenReturn(commandLine); in testTestMappingDependencyDiscovery() 348 assertTrue(argString.endsWith(commandLine)); in testTestMappingDependencyDiscovery()
|
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/python/ |
D | PythonBinaryHostTest.java | 258 List<String> commandLine = new ArrayList<>(); in runSinglePythonFile() local 259 commandLine.add(pyFile.getAbsolutePath()); in runSinglePythonFile() 263 commandLine.add("-s"); in runSinglePythonFile() 264 commandLine.add(mTestInfo.getDevice().getSerialNumber()); in runSinglePythonFile() 303 commandLine.add("--" + TEST_OUTPUT_FILE_FLAG); in runSinglePythonFile() 304 commandLine.add(tempTestOutputFile.getAbsolutePath()); in runSinglePythonFile() 309 commandLine.addAll(mTestOptions); in runSinglePythonFile() 329 result = getRunUtil().runTimedCmd(mTestTimeout, commandLine.toArray(new String[0])); in runSinglePythonFile() 338 commandLine.toArray(new String[0])); in runSinglePythonFile()
|
/tools/metalava/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/tools/trebuchet/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/tools/asuite/asuite_plugin/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/tools/tradefederation/core/test_framework/com/android/tradefed/device/metric/ |
D | AtraceCollector.java | 232 List<String> commandLine = new ArrayList<String>(); in postProcess() local 233 commandLine.add(mLogProcessingBinary.getAbsolutePath()); in postProcess() 235 commandLine.add(entry.replaceAll(mLogProcessingTraceInput, trace.getAbsolutePath())); in postProcess() 238 String[] commandLineArr = new String[commandLine.size()]; in postProcess() 239 commandLine.toArray(commandLineArr); in postProcess()
|
/tools/apksig/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/tools/ndkports/gradle/wrapper/ |
D | gradle-wrapper.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/gradle/
org/ ... |
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/mobly/ |
D | MoblyBinaryHostTest.java | 735 List<String> commandLine = new ArrayList<>(); in buildCommandLineArray() local 736 commandLine.add(filePath); in buildCommandLineArray() 739 commandLine.add("--"); in buildCommandLineArray() 741 commandLine.add("--config=" + configPath); in buildCommandLineArray() 744 commandLine.add("--test_bed=" + getTestBed()); in buildCommandLineArray() 747 commandLine.add("--device_serial=" + device.getSerialNumber()); in buildCommandLineArray() 749 commandLine.add("--log_path=" + getLogDirAbsolutePath()); in buildCommandLineArray() 751 commandLine.add("--tests"); in buildCommandLineArray() 752 commandLine.addAll(cleanFilters(tests)); in buildCommandLineArray() 755 commandLine.addAll(getTestOptions()); in buildCommandLineArray() [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/cluster/ |
D | ClusterCommandConfigBuilder.java | 247 String commandLine = mTestContext.getCommandLine(); in build() 248 if (commandLine == null || commandLine.isEmpty()) { in build() 249 commandLine = mCommand.getCommandLine(); in build() 251 config.injectOptionValue("cluster:command-line", commandLine); in build()
|
D | TestContext.java | 44 public void setCommandLine(String commandLine) { in setCommandLine() argument 45 mCommandLine = commandLine; in setCommandLine()
|
D | SubprocessReportingHelper.java | 59 String commandLine, String classpath, File workDir, String port) { in SubprocessReportingHelper() argument 60 mCommandLine = commandLine; in SubprocessReportingHelper()
|
/tools/tradefederation/core/src/com/android/tradefed/config/proxy/ |
D | TradefedDelegator.java | 103 String[] commandLine = clearCommandlineFromOneArg(originalCommand, DELETEGATED_OPTION_NAME); in clearCommandline() local 104 return commandLine; in clearCommandline()
|
/tools/loganalysis/src/com/android/loganalysis/item/ |
D | BugreportItem.java | 90 public void setCommandLine(CommandLineItem commandLine) { in setCommandLine() argument 91 setAttribute(COMMAND_LINE, commandLine); in setCommandLine()
|
/tools/tradefederation/core/src/com/android/tradefed/sandbox/ |
D | TradefedSandbox.java | 452 String commandLine = config.getCommandLine(); in prepareConfiguration() local 457 commandLine = commandLine + " --" + SandboxOptions.USE_PROTO_REPORTER; in prepareConfiguration() 460 commandLine = commandLine + " --no-" + SandboxOptions.USE_PROTO_REPORTER; in prepareConfiguration() 463 QuotationAwareTokenizer.tokenizeLine(commandLine, /* No Logging */ false); in prepareConfiguration()
|
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/retry/ |
D | RetryRescheduler.java | 133 String commandLine = previousLoader.getCommandLine(); in run() local 139 QuotationAwareTokenizer.tokenizeLine(commandLine)); in run()
|
/tools/metalava/buildSrc/src/main/kotlin/com/android/tools/metalava/buildinfo/ |
D | LibraryBuildInfo.kt | 98 it.commandLine("git", "rev-parse", "--verify", "HEAD") in configureBuildInfoTask()
|
/tools/tradefederation/core/javatests/com/android/tradefed/invoker/ |
D | TestInvocationTest.java | 340 private void stubNShardInvocation(int numShard, String commandLine) throws Exception { in stubNShardInvocation() argument 351 private void verifyNShardInvocation(int numShard, String commandLine) throws Exception { in verifyNShardInvocation() argument
|
/tools/tradefederation/core/javatests/com/android/tradefed/cluster/ |
D | ClusterCommandSchedulerTest.java | 400 String requestId, String commandId, String taskId, String attemptId, String commandLine) 407 ret.put("command_line", commandLine);
|
/tools/tradefederation/core/src/com/android/tradefed/invoker/ |
D | TestInvocation.java | 1903 public static IBuildInfo backFillBuildInfoForReporting(String commandLine) { in backFillBuildInfoForReporting() argument 1910 QuotationAwareTokenizer.tokenizeLine(commandLine, false))); in backFillBuildInfoForReporting()
|