Home | History | Annotate | Download | only in aupt

Lines Matching refs:command

41     public static void saveProcessOutput(Instrumentation instr, String command, File file)
43 Log.d(TAG, String.format("Saving command \"%s\" output into file %s",
44 command, file.getAbsolutePath()));
47 saveProcessOutput(instr, command, out);
52 public static void saveProcessOutput(Instrumentation instr, String command, OutputStream out)
56 ParcelFileDescriptor pfd = instr.getUiAutomation().executeShellCommand(command);
61 Process process = Runtime.getRuntime().exec(command);
68 throw new IOException("Thread interrupted waiting for command: " + command);
73 throw new IOException("Failed to save output of command: " + command);