Home
last modified time | relevance | path

Searched refs:proc (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DOldRuntimeTest.java298 Process proc = null; in checkExec() local
301 proc = Runtime.getRuntime().exec(command, envp); in checkExec()
304 proc = Runtime.getRuntime().exec(command); in checkExec()
307 proc = Runtime.getRuntime().exec(command, envp, file); in checkExec()
310 proc = Runtime.getRuntime().exec(commandArguments); in checkExec()
313 proc = Runtime.getRuntime().exec(commandArguments, envp); in checkExec()
316 proc = Runtime.getRuntime().exec(commandArguments, envp, file); in checkExec()
319 assertNotNull(proc); in checkExec()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DProcessManagerTest.java168 Process proc = rt.exec("ls"); in stuff() local
169 proc.waitFor(); in stuff()
170 proc = null; in stuff()