Searched refs:commandOutput (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/java/lang/management/OperatingSystemMXBean/
H A DGetSystemLoadAverage.java91 String output = commandOutput(p);
117 private static String commandOutput(Reader r) throws Exception { method in class:GetSystemLoadAverage
128 private static String commandOutput(Process p) throws Exception { method in class:GetSystemLoadAverage
130 String output = commandOutput(r);
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java59 private static String commandOutput(Reader r) throws Throwable { method in class:Basic
68 private static String commandOutput(Process p) throws Throwable { method in class:Basic
73 String output = commandOutput(r);
79 private static String commandOutput(ProcessBuilder pb) { method in class:Basic
81 return commandOutput(pb.start());
92 private static String commandOutput(String...command) { method in class:Basic
94 return commandOutput(Runtime.getRuntime().exec(command));
108 String got = commandOutput(pb);
181 (commandOutput(runtime.exec(winEnvCommand, env)));
183 return commandOutput(runtim
[all...]

Completed in 686 milliseconds