Searched refs:prog (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/test/etc/loading-test2-jar/
H A Dbuild.sh17 # Set up prog to be the path of this script, including following
21 prog="$0"
22 while [ -h "${prog}" ]; do
23 newProg=`/bin/ls -ld "${prog}"`
26 prog="${newProg}"
28 progdir=`dirname "${prog}"`
29 prog="${progdir}/${newProg}"
33 progdir=`dirname "${prog}"`
/libcore/luni/src/test/etc/loading-test-jar/
H A Dbuild.sh17 # Set up prog to be the path of this script, including following
21 prog="$0"
22 while [ -h "${prog}" ]; do
23 newProg=`/bin/ls -ld "${prog}"`
26 prog="${newProg}"
28 progdir=`dirname "${prog}"`
29 prog="${progdir}/${newProg}"
33 progdir=`dirname "${prog}"`
/libcore/luni/src/main/java/java/lang/
H A DRuntime.java179 * equivalent to calling {@code exec(prog, null, null)}.
181 * @param prog
188 public Process exec(String prog) throws java.io.IOException { argument
189 return exec(prog, null, null);
195 * method is equivalent to calling {@code exec(prog, envp, null)}.
197 * @param prog
207 public Process exec(String prog, String[] envp) throws java.io.IOException { argument
208 return exec(prog, envp, null);
216 * @param prog
229 public Process exec(String prog, Strin argument
[all...]

Completed in 399 milliseconds