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

/openjdk7/jdk/src/share/classes/java/lang/
H A DRuntime.java355 * <tt>exec(command, envp)</tt>
357 * <tt>{@link #exec(String, String[], File) exec}(command, envp, null)</tt>.
361 * @param envp array of strings, each element of which
379 * or one of the elements of <code>envp</code> is <code>null</code>
387 public Process exec(String command, String[] envp) throws IOException { argument
388 return exec(command, envp, null);
396 * <tt>exec(command, envp, dir)</tt>
398 * <tt>{@link #exec(String[], String[], File) exec}(cmdarray, envp, dir)</tt>,
411 * @param envp array of strings, each element of which
433 * or one of the elements of <code>envp</cod
441 exec(String command, String[] envp, File dir) argument
527 exec(String[] cmdarray, String[] envp) argument
615 exec(String[] cmdarray, String[] envp, File dir) argument
[all...]
H A DProcessBuilder.java353 // Only for use by Runtime.exec(...envp...)
354 ProcessBuilder environment(String[] envp) { argument
356 if (envp != null) {
357 environment = ProcessEnvironment.emptyEnvironment(envp.length);
360 for (String envstring : envp) {
/openjdk7/jdk/src/solaris/native/java/lang/
H A DUNIXProcess_md.c527 const char *const envp[])
537 execve(argv[0], (char **) argv, (char **) envp);
550 const char *const envp[])
554 execve(file, (char **) argv, (char **) envp);
556 execve_as_traditional_shell_script(file, argv, envp);
559 environ = (char **) envp;
574 const char *const envp[])
576 if (envp == NULL || (char **) envp == environ) {
587 execve_with_shell_fallback(file, argv, envp);
525 execve_as_traditional_shell_script(const char *file, const char *argv[], const char *const envp[]) argument
548 execve_with_shell_fallback(const char *file, const char *argv[], const char *const envp[]) argument
572 JDK_execvpe(const char *file, const char *argv[], const char *const envp[]) argument
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java1491 // Test Runtime.exec(...envp...)
1497 String[]envp = {"FOO=BAR","BAZ=GORP","QUUX=",
1499 String output = nativeEnv(envp);
1509 // Test Runtime.exec(...envp...)
1515 String[]envp = {"FOO=BAR","BAZ=GORP","QUUX=",
1517 String output = nativeEnv(envp);
1633 // Test Runtime.exec(...envp...) with envstrings with initial `='
1639 String[] envp;
1643 envp = envpWin;
1645 envp
[all...]

Completed in 43 milliseconds