Searched refs:Process (Results 1 - 25 of 119) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/com/sun/jdi/connect/
H A DVMStartException.java31 * provides the {@link java.lang.Process} object for the launched
39 Process process;
41 public VMStartException(Process process) {
47 Process process) {
52 public Process process() {
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcess.java34 * subclass of {@code Process} that can be used to control the process
35 * and obtain information about it. The class {@code Process}
64 * the {@code Process} object, but rather the subprocess
68 * Process} object execute asynchronously or concurrently with respect
69 * to the Java process that owns the {@code Process} object.
72 * to create a {@code Process}.
76 public abstract class Process { class
80 * input of the process represented by this {@code Process} object.
99 * output of the process represented by this {@code Process} object.
125 * of the process represented by this {@code Process} objec
[all...]
H A DRuntime.java327 * @return A new {@link Process} object for managing the subprocess
346 public Process exec(String command) throws IOException {
367 * @return A new {@link Process} object for managing the subprocess
387 public Process exec(String command, String[] envp) throws IOException {
421 * @return A new {@link Process} object for managing the subprocess
441 public Process exec(String command, String[] envp, File dir)
464 * @return A new {@link Process} object for managing the subprocess
484 public Process exec(String cmdarray[]) throws IOException {
506 * @return A new {@link Process} object for managing the subprocess
527 public Process exe
[all...]
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DSleepyCat.java37 private static void destroy (Process[] deathRow) {
44 private Process[] deathRow;
47 TimeoutTask (Process[] deathRow) {
79 Process[] cats = new Process[iterations];
80 Process[] sleeps = new Process[iterations];
88 Process sleep = rt.exec(sleepArgs);
124 Process[] backgroundSleepers = new Process[iteration
[all...]
H A DLotsOfDestroys.java43 Process process = Runtime.getRuntime().exec(ECHO + " x");
H A DSpace.java34 Process p = Runtime.getRuntime().exec( "cmd /c echo hello" );
H A DLotsOfOutput.java27 * @summary Process with lots of output should not crash VM
40 Process p = Runtime.getRuntime().exec(CAT + " /dev/zero");
45 throw new Exception("Process consumes memory.");
H A DStatus.java26 * @summary Ensure that Process.waitFor returns the correct status code
41 Process p = Runtime.getRuntime().exec("false");
H A DExecWithDir.java45 Process p = Runtime.getRuntime().exec(CMD, null, dir);
H A DStreamsSurviveDestroy.java105 Process p = Runtime.getRuntime().exec("/bin/cat");
125 Process p = Runtime.getRuntime().exec("/bin/cat");
146 Process p = Runtime.getRuntime().exec("/bin/cat");
168 Process p = Runtime.getRuntime().exec("/bin/cat");
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DFeelingLucky.java26 * 6469606: (process) Process.destroy() can kill wrong process (Unix)
37 final Process minedProcess = rt.exec(pidPrinter);
71 Process p = rt.exec(magnum);
H A DSecurityManagerClinit.java27 * @summary Check that Process-related classes have the proper
70 Process p = Runtime.getRuntime().exec(cmd);
/openjdk7/jdk/test/javax/management/ImplementationVersion/
H A DImplVersionReader.java35 private Process proc;
37 public ImplVersionReader(Process p, InputStream is) {
/openjdk7/jdk/test/javax/management/remote/mandatory/version/
H A DImplVersionReader.java35 private Process proc;
37 public ImplVersionReader(Process p, InputStream is) {
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DVirtualMachineManager.java371 * {@link java.lang.Process} object for the taget VM. It may be
388 * If launched, the {@link java.lang.Process} object for
404 VirtualMachine createVirtualMachine(Connection connection, Process process) throws IOException;
410 * #createVirtualMachine(Connection, Process)} method and
/openjdk7/jdk/test/sun/rmi/rmic/RMIGenerator/
H A DRmicDefault.java57 Process javacProcess = Runtime.getRuntime().exec(
68 Process rmicProcess = Runtime.getRuntime().exec(
/openjdk7/jdk/test/com/sun/jdi/
H A DDoubleAgentTest.java91 private static Process launch(String address, String class_name) throws IOException {
112 Process p = Runtime.getRuntime().exec(cmd);
131 Process process = launch(address, "Exit0");
H A DExclusiveBind.java98 private static Process launch(String address, boolean suspend, String class_name) throws IOException {
121 Process p = Runtime.getRuntime().exec(cmd);
144 Process process1 = launch(address, true, "HelloWorld");
150 Process process2 = launch(address, false, "HelloWorld");
H A DBadHandshakeTest.java109 private static Process launch(String address, String class_name) throws IOException {
128 Process p = Runtime.getRuntime().exec(cmd);
151 Process process = launch(address, "Exit0");
H A DRunToExit.java114 private static Process launch(String address, String class_name) throws IOException {
133 Process p = Runtime.getRuntime().exec(cmd);
156 Process process = launch(address, "Exit0");
H A DNoLaunchOptionTest.java38 private Process subprocess;
70 Process process = Runtime.getRuntime().exec(cmdStrings);
H A DOptionTest.java39 private Process subprocess;
71 Process process = Runtime.getRuntime().exec(cmdStrings);
/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServerJava.java77 public Process startClient(Rectangle[] bounds, long window) {
/openjdk7/jdk/test/java/awt/regtesthelpers/process/
H A DProcessCommunicator.java61 * @return results of the executed {@code Process}
68 Process process = Runtime.getRuntime().exec(command);
75 /** Executes child {code Process}
79 * @return results of the executed {@code Process}
89 * This is a workaround for <code>Process.waitFor()</code> never returning.
91 * @return results of the executed {@code Process}
93 private static ProcessResults doWaitFor(final Process p) {
121 // Process is not finished yet;
143 * @return command to execute the {@code Process}
/openjdk7/jdk/test/java/lang/management/OperatingSystemMXBean/
H A DGetSystemLoadAverage.java90 Process p = pb.start();
128 private static String commandOutput(Process p) throws Exception {

Completed in 919 milliseconds

12345