/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | ProcessTest.java | 31 ArrayList<Process> children = new ArrayList<Process>(); in test_55017() 45 Process ps = Runtime.getRuntime().exec(psCommand, null, null); in test_55017() 57 Process p = Runtime.getRuntime().exec(commands, null, null); in test_getOutputStream() 85 Process p = Runtime.getRuntime().exec(commands, null, null); in test_getErrorStream() 114 Process process = Runtime.getRuntime().exec(commands, null, null); in test_exitValue() 143 Process process = Runtime.getRuntime().exec(commands, null, null); in test_destroy() 151 Process process = Runtime.getRuntime().exec(commands, null, null); in test_destroyForcibly() 159 Process process = Runtime.getRuntime().exec(commands, null, null); in test_isAlive() 168 Process process = Runtime.getRuntime().exec(commands, null, null); in test_waitForTimeout() 180 Process process = Runtime.getRuntime().exec(commands, null, null); in test_waitForTimeout_NPE()
|
D | ProcessManagerTest.java | 32 Process process = null; 37 Process process = Runtime.getRuntime().exec(commands, null, null); in testCat() 116 Process process = Runtime.getRuntime().exec( in testPwd() 127 Process process = Runtime.getRuntime().exec( in testEnvironment() 133 String readLine(Process process) throws IOException { in readLine() 139 void logErrors(final Process process) throws IOException { in logErrors() 168 Process proc = rt.exec("ls"); in stuff() 185 Process process = Runtime.getRuntime().exec(commands, null, null); in testCloseNonStandardFds() 207 private int countLines(Process process) throws IOException { in countLines()
|
D | Process2Test.java | 34 Process p = javaProcessBuilder().start(); in test_streams() 42 Process process = null; in test_getErrorStream() 63 Process erProcess = null; in test_getErrorStream()
|
D | ProcessBuilderTest.java | 151 Process process = pb.start(); in testStart()
|
/libcore/ojluni/annotations/hiddenapi/java/lang/ |
D | Runtime.java | 66 public java.lang.Process exec(java.lang.String command) throws java.io.IOException { in exec() 70 public java.lang.Process exec(java.lang.String command, java.lang.String[] envp) in exec() 75 public java.lang.Process exec( in exec() 81 public java.lang.Process exec(java.lang.String[] cmdarray) throws java.io.IOException { in exec() 85 public java.lang.Process exec(java.lang.String[] cmdarray, java.lang.String[] envp) in exec() 90 public java.lang.Process exec( in exec()
|
D | UNIXProcess.java | 31 final class UNIXProcess extends java.lang.Process {
|
/libcore/ojluni/src/main/java/java/lang/ |
D | Process.java | 77 public abstract class Process { class 244 public Process destroyForcibly() { in destroyForcibly()
|
D | Runtime.java | 420 public Process exec(String command) throws IOException { in exec() 461 public Process exec(String command, String[] envp) throws IOException { in exec() 515 public Process exec(String command, String[] envp, File dir) in exec() 558 public Process exec(String cmdarray[]) throws IOException { in exec() 601 public Process exec(String[] cmdarray, String[] envp) throws IOException { in exec() 689 public Process exec(String[] cmdarray, String[] envp, File dir) in exec()
|
D | ProcessImpl.java | 61 static Process start(String[] cmdarray, in start()
|
D | UNIXProcess.java | 55 final class UNIXProcess extends Process {
|
D | ProcessBuilder.java | 1004 public Process start() throws IOException {
|
/libcore/luni/src/test/java/libcore/java/lang/ |
D | ProcessBuilderTest.java | 85 Process process = new ProcessBuilder(shell()) in testRedirectErrorStream_outputAndErrorAreMerged() 105 Process process = new ProcessBuilder() in testRedirectInherit() 201 Process process = new ProcessBuilder("ls", missingFilePath) in testRedirectPipe_error() 214 Process process = new ProcessBuilder() in testRedirect_nullStreams() 228 Process process = new ProcessBuilder() in testRedirectErrorStream_nullStream() 246 Process process = new ProcessBuilder(shell(), "-c", "echo out; echo err 1>&2").start(); in testDestroyClosesEverything() 275 Process process = new ProcessBuilder(shell(), "-c", "echo out; echo err 1>&2").start(); in testDestroyDoesNotLeak() 476 Process process = pb.start(); in checkProcessExecution() 528 private static int getChildProcessPid(Process process) { in getChildProcessPid()
|
D | OldRuntimeTest.java | 298 Process proc = null; in checkExec()
|
/libcore/luni/src/test/java/libcore/java/nio/file/ |
D | FilesSetup.java | 164 static Process execCmdAndWaitForTermination(String... cmdList) in execCmdAndWaitForTermination() 166 Process process = Runtime.getRuntime().exec(cmdList); in execCmdAndWaitForTermination()
|
D | Files2Test.java | 263 Process statProcess = execCmdAndWaitForTermination(statCmd); in test_getOwner()
|
/libcore/metrictests/memory/apps/src/libcore/heapdumper/ |
D | PssInstrumentation.java | 21 import android.os.Process;
|
/libcore/support/src/test/java/tests/support/ |
D | Support_Exec.java | 84 Process process = builder.start(); in execAndGetOutput()
|
/libcore/luni/src/test/java/libcore/java/lang/invoke/ |
D | MethodHandlesTest.java | 933 … mh = MethodHandles.lookup().findConstructor(Process.class, MethodType.methodType(void.class)); in testConstructors() 1187 Process p = (Process) mh.invokeExact(LARGE, SMALL); in testPrimitiveReturnValueConversions() 1193 Process p = (Process) mh.invoke(LARGE, SMALL); in testPrimitiveReturnValueConversions() 1568 vat, 'x', (Process) null, 3.131, "bad", new Integer(37))); in testVariableArity_Number() 1683 'x', (Process) null, 3.131, "bad", new Integer(37))).lastResult()); in testVariableArity_numberConstructors()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
D | FileTest.java | 1330 Process p = r.exec("attrib +h \"" + f.getPath() + "\""); in test_listFiles() 1366 Process p = r.exec("attrib -h \"" in test_listFiles()
|
/libcore/api/ |
D | current.txt | 3457 public abstract class Process { 3458 ctor public Process(); 3460 method public Process destroyForcibly(); 3491 method public Process start() throws java.io.IOException; 3530 method public Process exec(String) throws java.io.IOException; 3531 method public Process exec(String, String[]) throws java.io.IOException; 3532 method public Process exec(String, String[], java.io.File) throws java.io.IOException; 3533 method public Process exec(String[]) throws java.io.IOException; 3534 method public Process exec(String[], String[]) throws java.io.IOException; 3535 method public Process exec(String[], String[], java.io.File) throws java.io.IOException;
|
/libcore/ |
D | openjdk_java_files.bp | 178 "ojluni/src/main/java/java/lang/Process.java",
|