Searched defs:process (Results 1 - 5 of 5) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DProcessManagerTest.java32 Process process = null; field in class:ProcessManagerTest
37 Process process = Runtime.getRuntime().exec(commands, null, null);
39 OutputStream out = process.getOutputStream();
45 assertEquals(greeting, readLine(process));
51 process = Runtime.getRuntime().exec(commands, null, null);
53 assertEquals(0, process.waitFor());
64 process = Runtime.getRuntime().exec(commands, null, null);
69 process.waitFor();
102 //process.destroy();
114 Process process
131 readLine(Process process) argument
137 logErrors(final Process process) argument
203 countLines(Process process) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DSignatureFileVerifier.java177 * process the signature block file. Goes through the .SF file
183 public void process(Hashtable<String, CodeSigner[]> signers, method in class:SignatureFileVerifier
286 // go through all the attributes and process *-Digest-Manifest entries
331 // go through all the attributes and process
408 // go through all the attributes and process *-Digest entries
/libcore/ojluni/src/main/native/
H A DUNIXProcess_md.c72 * process starts a small subprocess.
181 * for SIGCHLD be SIG_DFL and SIG_IGN. We cannot obtain process
188 * Consider what happens if java's parent process sets the SIGCHLD
319 /* Block until a child process exits and return its exit code.
329 /* Wait for the child process to exit. This returns immediately if
348 * it allows callers to distinguish between process exit and
349 * process death by signal.
510 /* Debugging process code is difficult; where to write debug output? */
705 * Child process after a successful fork() or clone().
784 * Start a child process runnin
833 UNIXProcess_forkAndExec(JNIEnv *env, jobject process, jbyteArray prog, jbyteArray argBlock, jint argc, jbyteArray envBlock, jint envc, jbyteArray dir, jintArray std_fds, jboolean redirectErrorStream) argument
[all...]
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp703 return process("getpwnam_r", getpwnam_r(name, &mPwd, mBuffer.get(), mBufferSize, &mResult));
707 return process("getpwuid_r", getpwuid_r(uid, &mPwd, mBuffer.get(), mBufferSize, &mResult));
715 jobject process(const char* syscall, int error) { function in class:Passwd
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java2052 public static final int process = 0; field in class:R

Completed in 268 milliseconds