Home | History | Annotate | Download | only in commands

Lines Matching full:process

44  * An out of process executable.
53 private volatile Process process;
100 process = processBuilder.start();
104 return process != null;
112 return process.getInputStream();
135 if (process.waitFor() != 0 && !permitNonZeroExitStatus) {
151 throw new RuntimeException("Failed to execute process: " + args, e);
153 throw new RuntimeException("Interrupted while executing process: " + args, e);
158 * Executes a command with a specified timeout. If the process does not
173 throw new RuntimeException("Interrupted while executing process: " + args, e);
200 * Destroys the underlying process and closes its associated streams.
203 if (process == null) {
207 process.destroy();
209 process.waitFor();
210 int exitValue = process.exitValue();