Home
last modified time | relevance | path

Searched refs:getenv (Results 1 – 20 of 20) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
DOldSystemTest.java267 Map<String,String> envMap = System.getenv(); in test_getenv()
279 System.getenv("PATH")); in test_getenvLString()
282 System.getenv("nonexistent.property")); in test_getenvLString()
285 System.getenv(null); in test_getenvLString()
DOldRuntimeTest.java279 Object [] valueSet = System.getenv().values().toArray(); in getEnv()
280 Object [] keySet = System.getenv().keySet().toArray(); in getEnv()
DProcessBuilderTest.java60 String devicePath = System.getenv("ANDROID_ROOT") + desktopPath; in commandPath()
/libcore/ojluni/annotations/mmodule/java/lang/
DSystem.annotated.java77 public static java.lang.String getenv(java.lang.String name) { throw new RuntimeException("Stub!");… in getenv() method in System
79 public static java.util.Map<java.lang.String,java.lang.String> getenv() { throw new RuntimeExceptio… in getenv() method in System
/libcore/ojluni/annotations/sdk/nullability/java/lang/
DSystem.annotated.java77 @libcore.util.Nullable public static java.lang.String getenv(@libcore.util.NonNull java.lang.String… in getenv() method in System
79 @libcore.util.NonNull public static java.util.Map<java.lang.String,java.lang.String> getenv() { thr… in getenv() method in System
/libcore/ojluni/src/main/java/java/lang/
DSystem.java980 String javaHome = getenv("JAVA_HOME"); in initUnchangeableSystemProperties()
1416 public static String getenv(String name) { in getenv() method in System
1421 return Libcore.os.getenv(name); in getenv()
1465 public static java.util.Map<String,String> getenv() { in getenv() method in System
1471 return ProcessEnvironment.getenv(); in getenv()
DProcessEnvironment.java84 static String getenv(String name) { in getenv() method in ProcessEnvironment
89 static Map<String,String> getenv() { in getenv() method in ProcessEnvironment
/libcore/ojluni/annotations/hiddenapi/java/lang/
DSystem.java207 public static java.lang.String getenv(java.lang.String name) { in getenv() method in System
211 public static java.util.Map<java.lang.String, java.lang.String> getenv() { in getenv() method in System
/libcore/tools/upstream/src/main/java/libcore/
DUtil.java50 String result = System.getenv(name); in getEnvOrThrow()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DProcessBuilderTest.java100 assertEquals(System.getenv(), env); in testEnvironment()
DProcessManagerTest.java126 String[] environment = { "FOO=foo", "PATH=" + System.getenv("PATH") }; in testEnvironment()
DSystemTest.java311 Map map = System.getenv(); in testEnvUnmodifiable()
/libcore/support/src/test/java/tests/support/resource/
DSupport_Resources.java45 String ANDROID_BUILD_TOP = System.getenv("ANDROID_BUILD_TOP"); in getStream()
/libcore/ojluni/src/main/native/
DSystem.c206 const char* library_path = getenv("LD_LIBRARY_PATH"); in System_specialProperties()
DUNIXProcess_md.c243 const char *s = getenv("PATH"); in effectivePath()
/libcore/luni/src/main/java/android/system/
DOs.java210 public static String getenv(String name) { return Libcore.os.getenv(name); } in getenv() method in Os
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java115 public String getenv(String name) { return os.getenv(name); } in getenv() method in ForwardingOs
DOs.java90 public String getenv(String name); in getenv() method
DLinux.java89 public native String getenv(String name); in getenv() method in Linux
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1396 return env->NewStringUTF(getenv(name.c_str())); in Linux_getenv()
2620 NATIVE_METHOD(Linux, getenv, "(Ljava/lang/String;)Ljava/lang/String;"),