Searched defs:envp (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java92 String [] envp = getEnv();
94 checkExec(0, envp, null);
120 Runtime.getRuntime().exec("", envp);
130 String [] envp = getEnv();
132 checkExec(4, envp, null);
167 Runtime.getRuntime().exec(new String[]{}, envp);
176 Runtime.getRuntime().exec(new String[]{""}, envp);
183 String [] envp = getEnv();
187 checkExec(2, envp, workFolder);
213 Runtime.getRuntime().exec("", envp, workFolde
279 checkExec(int testCase, String [] envp, File file) argument
[all...]
/libcore/luni/src/main/java/java/lang/
H A DRuntime.java134 * process. The new process uses the environment provided in {@code envp}.
136 * {@code exec(progArray, envp, null)}.
141 * @param envp
149 public Process exec(String[] progArray, String[] envp) throws java.io.IOException { argument
150 return exec(progArray, envp, null);
155 * process. The new process uses the environment provided in {@code envp}
161 * @param envp
172 public Process exec(String[] progArray, String[] envp, File directory) throws IOException { argument
174 return ProcessManager.getInstance().exec(progArray, envp, directory, false);
195 * process uses the environment provided in {@code envp}
208 exec(String prog, String[] envp) argument
230 exec(String prog, String[] envp, File directory) argument
[all...]
/libcore/luni/src/main/java/android/system/
H A DOs.java104 public static void execve(String filename, String[] argv, String[] envp) throws ErrnoException { Libcore.os.execve(filename, argv, envp); } argument
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java67 public void execve(String filename, String[] argv, String[] envp) throws ErrnoException { os.execve(filename, argv, envp); } argument
H A DOs.java58 public void execve(String filename, String[] argv, String[] envp) throws ErrnoException; argument
H A DPosix.java61 public native void execve(String filename, String[] argv, String[] envp) throws ErrnoException; argument

Completed in 220 milliseconds