Searched defs:getenv (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | System.java | 843 * <code>{@link RuntimePermission}("getenv."+name)</code> 866 * <code>System.getenv("FOO").equals(System.getenv("foo"))</code> 878 * @see #getenv() 881 public static String getenv(String name) { method in class:System 884 sm.checkPermission(new RuntimePermission("getenv."+name)); 887 return ProcessEnvironment.getenv(name); 914 * <code>{@link RuntimePermission}("getenv.*")</code> 927 * @see #getenv(String) 931 public static java.util.Map<String,String> getenv() { method in class:System [all...] |
/openjdk7/jdk/src/windows/classes/java/lang/ |
H A D | ProcessEnvironment.java | 51 * System.getenv(String) is case-insensitive, while System.getenv() 265 // Only for use by System.getenv(String) 266 static String getenv(String name) { method in class:ProcessEnvironment 273 // guarantees that System.getenv().get(String) will be 274 // consistent with System.getenv(String). 278 // Only for use by System.getenv() 279 static Map<String,String> getenv() { method in class:ProcessEnvironment 333 String s = getenv(name);
|
/openjdk7/jdk/src/solaris/classes/java/lang/ |
H A D | ProcessEnvironment.java | 83 /* Only for use by System.getenv(String) */ 84 static String getenv(String name) { method in class:ProcessEnvironment 88 /* Only for use by System.getenv() */ 89 static Map<String,String> getenv() { method in class:ProcessEnvironment
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | os_bsd.cpp | 235 bool os::getenv(const char* name, char* buf, int len) { function in class:os 236 const char* val = ::getenv(name); 398 const char *home_dir = ::getenv("HOME"); 442 #define getenv(n) ::getenv(n) macro 549 char *l = getenv("JAVA_LIBRARY_PATH"); 558 char *v = getenv("DYLD_LIBRARY_PATH"); 560 char *v = getenv("LD_LIBRARY_PATH"); 627 #undef getenv macro 2542 char* java_home_var = ::getenv("JAVA_HOM [all...] |
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | os_linux.cpp | 237 bool os::getenv(const char* name, char* buf, int len) { function in class:os 238 const char* val = ::getenv(name); 376 #define getenv(n) ::getenv(n) macro 467 char *v = getenv("LD_LIBRARY_PATH"); 502 #undef getenv macro 2365 char* java_home_var = ::getenv("JAVA_HOME"); 3812 if ((s = ::getenv("_JAVA_SR_SIGNUM")) != 0) {
|
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | os_solaris.cpp | 715 bool os::getenv(const char* name, char* buffer, int len) { function in class:os 716 char* val = ::getenv( name ); 773 #define getenv(n) ::getenv(n) macro 977 #undef getenv macro 2516 char* java_home_var = ::getenv("JAVA_HOME");
|
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | os_windows.cpp | 163 bool os::getenv(const char* name, char* buffer, int len) { function in class:os 197 if (!getenv("_ALT_JAVA_HOME_DIR", home_dir, MAX_PATH)) { 245 char *path_str = ::getenv("PATH"); 1754 char* java_home_var = ::getenv("JAVA_HOME");
|
Completed in 2837 milliseconds