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

/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java114 String [] envp = getEnv();
116 checkExec(0, envp, null);
142 Runtime.getRuntime().exec("", envp);
152 String [] envp = getEnv();
154 checkExec(4, envp, null);
189 Runtime.getRuntime().exec(new String[]{}, envp);
198 Runtime.getRuntime().exec(new String[]{""}, envp);
205 String [] envp = getEnv();
209 checkExec(2, envp, workFolder);
235 Runtime.getRuntime().exec("", envp, workFolde
301 checkExec(int testCase, String [] envp, File file) argument
[all...]
/libcore/luni/src/main/java/java/lang/
H A DRuntime.java133 * process. The new process uses the environment provided in {@code envp}.
135 * {@code exec(progArray, envp, null)}.
140 * @param envp
148 public Process exec(String[] progArray, String[] envp) throws java.io.IOException { argument
149 return exec(progArray, envp, null);
154 * process. The new process uses the environment provided in {@code envp}
160 * @param envp
171 public Process exec(String[] progArray, String[] envp, File directory) throws IOException { argument
173 return ProcessManager.getInstance().exec(progArray, envp, directory, false);
194 * process uses the environment provided in {@code envp}
207 exec(String prog, String[] envp) argument
229 exec(String prog, String[] envp, File directory) argument
[all...]
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java49 public void execve(String filename, String[] argv, String[] envp) throws ErrnoException { os.execve(filename, argv, envp); } argument
H A DOs.java40 public void execve(String filename, String[] argv, String[] envp) throws ErrnoException; argument
H A DPosix.java43 public native void execve(String filename, String[] argv, String[] envp) throws ErrnoException; argument
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp495 ExecStrings envp(env, javaEnvp);
496 execve(path.c_str(), argv.get(), envp.get());

Completed in 87 milliseconds