/tools/tradefederation/core/common_util/com/android/tradefed/util/ |
D | IRunUtil.java | 107 public CommandResult runTimedCmd(final long timeout, final String... command); in runTimedCmd() 121 final long timeout, OutputStream stdout, OutputStream stderr, final String... command); in runTimedCmd() 134 int attempts, final String... command); in runTimedCmdRetry() 145 public CommandResult runTimedCmdSilently(final long timeout, final String... command); in runTimedCmdSilently() 159 int attempts, final String... command); in runTimedCmdSilentlyRetry() 170 CommandResult runTimedCmdWithInput(long timeout, String input, String... command); in runTimedCmdWithInput() 181 CommandResult runTimedCmdWithInput(long timeout, String input, List<String> command); in runTimedCmdWithInput() 194 long timeout, @Nullable File inputRedirect, String... command); in runTimedCmdWithInputRedirect() 205 public Process runCmdInBackground(String... command) throws IOException; in runCmdInBackground() 217 public Process runCmdInBackground(Redirect redirect, final String... command) in runCmdInBackground() [all …]
|
D | RunUtil.java | 145 public CommandResult runTimedCmd(final long timeout, final String... command) { in runTimedCmd() 154 OutputStream stderr, final String... command) { in runTimedCmd() 168 OutputStream stdout, OutputStream stderr, String... command) { in createRunnableResult() 181 long timeout, long retryInterval, int attempts, String... command) { in runTimedCmdRetry() 195 private synchronized ProcessBuilder createProcessBuilder(String... command) { in createProcessBuilder() 199 private synchronized ProcessBuilder createProcessBuilder(Redirect redirect, String... command) { in createProcessBuilder() 245 final String... command) { in runTimedCmdWithInput() 254 final List<String> command) { in runTimedCmdWithInput() 265 final long timeout, @Nullable File inputRedirect, final String... command) { in runTimedCmdWithInputRedirect() 284 public CommandResult runTimedCmdSilently(final long timeout, final String... command) { in runTimedCmdSilently() [all …]
|
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
D | RunCommandTargetPreparerTest.java | 71 final String command = "mkdir test"; in testSetUp() local 89 final String command = "mkdir test"; in testSetUp_withTimeout() local 115 final String command = "mkdir test"; in testDisabled() local 130 final String command = "mkdir test"; in testTearDown() local 147 final String command = "mkdir test"; in testBgCmd() local
|
/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/ |
D | ClusterCommandTest.java | 42 ClusterCommand command = ClusterCommand.fromJson(json); in testFromJson_withAssignedAttemptId() local 55 ClusterCommand command = ClusterCommand.fromJson(json); in testFromJson_withoutAssignedAttemptId() local 72 ClusterCommand command = ClusterCommand.fromJson(json); in testFromJson_extraOptions() local
|
/tools/tradefederation/core/src/com/android/tradefed/util/ |
D | SimplePerfUtil.java | 93 public SimplePerfResult executeCommand(String command) throws DeviceNotAvailableException { in executeCommand() 109 public void executeCommand(String command, IShellOutputReceiver receiver) in executeCommand() 131 public void executeCommand(String command, IShellOutputReceiver receiver, in executeCommand() 138 protected String commandStringPreparer(String command) { in commandStringPreparer()
|
D | GCSBucketUtil.java | 161 List<String> command = new ArrayList<>(); in copy() local 271 List<String> command = new ArrayList<>(); in makeBucket() local 310 List<String> command = new ArrayList<>(); in ls() local 405 List<String> command = new ArrayList<>(); in stat() local 453 List<String> command = new ArrayList<>(); in md5Hash() local 573 List<String> command = new ArrayList<>(); in remove() local 641 String[] command = { in removeBucket() local
|
D | CircularAtraceUtil.java | 70 String command = String.format(ATRACE_START_CMD, bufferSizeMB * KB_IN_MB, tagsString); in startTrace() local 91 String command = String.format(ATRACE_STOP_CMD, bufferSizeKB, DEVICE_FILE); in endTrace() local
|
D | DeviceConcurrentUtil.java | 94 public ShellCommandCallable(ITestDevice device, String command, long timeout) { in ShellCommandCallable() 101 public ShellCommandCallable<V> setCommand(String command) { in setCommand()
|
/tools/tradefederation/contrib/src/com/android/performance/tests/ |
D | EmmcPerformanceTest.java | 146 String command = in runSequentialRead() local 156 String command = in runSequentialWrite() local 167 String command = in runRandomRead() local 180 String command = in runRandomWrite() local 203 String command, in runTest() 265 private Double runDdIteration(String command, Map<String, SimpleStats> simpleperfMetricsMap) in runDdIteration() argument 296 private Double runRandomIteration(String command, Map<String, SimpleStats> simpleperfMetricsMap) in runRandomIteration() argument
|
/tools/test/connectivity/acts/framework/acts/libs/proc/ |
D | job.py | 76 command=[], argument 112 def run(command, argument 179 def run_async(command, env=None): argument
|
/tools/tradefederation/core/tests/src/com/android/tradefed/util/ |
D | SimplePerfUtilTest.java | 46 String command = "ls -l"; in testCommandStringPreparerWithoutParams() local 53 String command = "sleep 10"; in testCommandStringPreparerWithParams() local
|
D | RunUtilTest.java | 86 OutputStream stdout, OutputStream stderr, String... command) { in createRunnableResult() 187 String[] command = {"sleep", "10000"}; in testRunTimedCmd_timeout() local 346 String[] command = {"unused", "cmd"}; in testRuntimedCmd_withFileOutputStream() local 375 String[] command = {"unused", "cmd"}; in testRuntimedCmd_regularOutput_fileNull() local 403 String[] command = {"unused", "cmd"}; in testRuntimedCmd_notWritable() local
|
/tools/tradefederation/core/src/com/android/tradefed/device/cloud/ |
D | RemoteSshUtil.java | 48 String... command) { in remoteSshCommandExec() 75 String... command) { in remoteSshCommandExec()
|
D | LaunchCvdHelper.java | 46 List<String> command = new ArrayList<>(); in createSimpleDeviceCommand() local
|
/tools/tradefederation/core/tests/src/com/android/tradefed/command/ |
D | ConsoleTest.java | 217 String[] command = new String[] {"run", "command", "--arg", "value", "config.xml"}; in testRunCommand() local 237 String[] command = new String[] {"run", "--arg", "value", "config.xml"}; in testRunCommand_shortcut() local 260 String[] command = new String[] {"run", "command", "command", "--arg", "value", in testRunCommand_startsWithCommand() local
|
/tools/tradefederation/core/device_build_interfaces/com/android/tradefed/device/ |
D | INativeDevice.java | 255 public void executeShellCommand(String command, IShellOutputReceiver receiver) in executeShellCommand() 274 public void executeShellCommand(String command, IShellOutputReceiver receiver, in executeShellCommand() 297 String command, in executeShellCommand() 313 public String executeShellCommand(String command) throws DeviceNotAvailableException; in executeShellCommand() 324 public CommandResult executeShellV2Command(String command) throws DeviceNotAvailableException; in executeShellV2Command() 336 public CommandResult executeShellV2Command(String command, File pipeAsInput) in executeShellV2Command() 349 public CommandResult executeShellV2Command(String command, OutputStream pipeToOutput) in executeShellV2Command() 365 String command, final long maxTimeoutForCommand, final TimeUnit timeUnit) in executeShellV2Command() 384 String command, in executeShellV2Command() 408 String command, in executeShellV2Command()
|
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/ |
D | formatter.py | 164 def format_remote_command(self, command, env): argument 189 def format_command(self, argument
|
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/ |
D | ClangCodeCoverageListenerTest.java | 187 List<String> command = mCommandArgumentCaptor.getCommand(); in testRun_logsCoverageFile() local 224 List<String> command = mCommandArgumentCaptor.getCommand(); in testOtherFileTypes_ignored() local 275 List<String> command = mCommandArgumentCaptor.getCommand(); in testProfileToolInConfiguration_notFromBuild() local
|
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_tools/ |
D | ota_tool_factory.py | 27 def create(ota_tool_class, command): argument
|
D | ota_tool.py | 25 def __init__(self, command): argument
|
D | update_device_ota_tool.py | 34 def __init__(self, command): argument
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | SandboxConfigurationFactory.java | 93 public IConfiguration createConfigurationFromArgs(String[] arrayArgs, DumpCmd command) in createConfigurationFromArgs() 194 RunSandboxConfigurationFactory(DumpCmd command) { in RunSandboxConfigurationFactory()
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | adb.py | 261 def shell(self, command, ignore_status=False, timeout=DEFAULT_ADB_TIMEOUT): argument 268 def shell_nb(self, command): argument 272 command, argument
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | LocalAndroidVirtualDevice.java | 287 private static void addLogLevelToAcloudCommand(List<String> command, LogLevel logLevel) { in addLogLevelToAcloudCommand() 335 List<String> command = in acloudCreate() local 410 List<String> command = in acloudDelete() local
|
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | RunHostCommandTargetPreparer.java | 233 String command = bgCommands.get(i); in runBgCommandList() local 257 String command = in replaceSerialNumber() local
|