Lines Matching refs:command

131      * @throws AdbCommandRejectedException if adb rejects the command
186 * @throws AdbCommandRejectedException if adb rejects the command
202 * @throws AdbCommandRejectedException if adb rejects the command
245 * @throws AdbCommandRejectedException if adb rejects the command
270 * @throws AdbCommandRejectedException if adb rejects the command
288 * @throws AdbCommandRejectedException if adb rejects the command
306 * @throws AdbCommandRejectedException if adb rejects the command
323 * @throws AdbCommandRejectedException if adb rejects the command
339 * @throws AdbCommandRejectedException if adb rejects the command
355 * @throws AdbCommandRejectedException if adb rejects the command
370 * @throws AdbCommandRejectedException if adb rejects the command
443 * @throws AdbCommandRejectedException if adb rejects the command
464 * Helper method which executes a adb shell command and returns output as a {@link String}
465 * @return the output of the command
467 * @throws AdbCommandRejectedException if adb rejects the command
472 public String executeShellCommand(String command) throws IOException, TimeoutException,
474 Log.i(LOG_TAG, String.format("adb shell %s", command));
476 mDevice.executeShellCommand(command, receiver);
486 * @throws AdbCommandRejectedException if adb rejects the command
512 * @throws AdbCommandRejectedException if adb rejects the command
519 String command = "reboot"; // no need for -s since mDevice is already tied to a device
520 Log.i(LOG_TAG, command);
522 mDevice.executeShellCommand(command, receiver);
630 * Output receiver for "pm install package.apk" command line.
679 * @throws AdbCommandRejectedException if adb rejects the command
716 * @throws AdbCommandRejectedException if adb rejects the command
755 * @throws AdbCommandRejectedException if adb rejects the command
789 * @throws AdbCommandRejectedException if adb rejects the command
811 * @throws AdbCommandRejectedException if adb rejects the command
844 * @throws AdbCommandRejectedException if adb rejects the command
851 String command = "pm setInstallLocation %d";
864 executeShellCommand(String.format(command, locValue));
873 * @throws AdbCommandRejectedException if adb rejects the command