Home | History | Annotate | Download | only in util

Lines Matching refs:command

28  * Utility class to dispatch simple command and collect results
65 * Get argument for simpleperf command
74 * Set argument on simpleperf command
84 * Executes the given adb shell command, with simpleperf wrapped around
88 * @param command command to run on device
93 public SimplePerfResult executeCommand(String command) throws DeviceNotAvailableException {
94 String output = mDevice.executeShellCommand(commandStringPreparer(command));
100 * Executes the given adb shell command, with simpleperf wrapped around
104 * @param command command to run on device
109 public void executeCommand(String command, IShellOutputReceiver receiver)
111 mDevice.executeShellCommand(commandStringPreparer(command), receiver);
115 * Executes the given adb shell command, with simpleperf wrapped around
119 * @param command command to run on device
121 * @param maxTimeToOutputShellResponse the maximum amount of time during which the command is
125 * @param retryAttempts the maximum number of times to retry command if it fails due to a
131 public void executeCommand(String command, IShellOutputReceiver receiver,
134 mDevice.executeShellCommand(commandStringPreparer(command), receiver,
138 protected String commandStringPreparer(String command) {
139 if (command == null) {
140 command = "";
142 return commandPrependPreparer().toString() + command;
160 * Enum of simpleperf command options