Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/util/
DTimeZoneDataFiles.java46 return System.getenv(ANDROID_DATA_ENV) + "/misc/zoneinfo/current/" + fileName; in getDataTimeZoneFile()
51 return System.getenv(ANDROID_ROOT_ENV) + "/usr/share/zoneinfo/" + fileName; in getSystemTimeZoneFile()
78 String variable = System.getenv(environmentVariable); in getEnvironmentPath()
/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.java273 Object [] valueSet = System.getenv().values().toArray(); in getEnv()
274 Object [] keySet = System.getenv().keySet().toArray(); in getEnv()
DProcessBuilderTest.java60 String devicePath = System.getenv("ANDROID_ROOT") + desktopPath; in commandPath()
/libcore/ojluni/src/main/native/
Djava_props_md.c112 current = getenv(name); in setPathEnvironment()
431 v = getenv("JAVA2D_FONTPATH"); in GetJavaProperties()
467 if (getenv("GNOME_DESKTOP_SESSION_ID") != NULL) { in GetJavaProperties()
DSystem.c207 const char* library_path = getenv("LD_LIBRARY_PATH"); in System_specialProperties()
DUNIXProcess_md.c238 const char *s = getenv("PATH"); in effectivePath()
/libcore/ojluni/src/main/java/java/lang/
DSystem.java968 String javaHome = getenv("JAVA_HOME"); in initUnchangeableSystemProperties()
1405 public static String getenv(String name) { in getenv() method in System
1410 return Libcore.os.getenv(name); in getenv()
1454 public static java.util.Map<String,String> getenv() { in getenv() method in System
1460 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/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
DProcessBuilderTest.java100 assertEquals(System.getenv(), env); in testEnvironment()
DProcessManagerTest.java124 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/luni/src/test/java/libcore/java/security/
DMessageDigestTest.java162 if (System.getenv("ANDROID_BUILD_TOP") != null) {
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java93 public String getenv(String name) { return os.getenv(name); } in getenv() method in ForwardingOs
DOs.java78 public String getenv(String name); in getenv() method
DLinux.java84 public native String getenv(String name); in getenv() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java193 public static String getenv(String name) { return Libcore.os.getenv(name); } in getenv() method in Os
/libcore/luni/src/main/native/
Dlibcore_icu_ICU.cpp1005 const char* dataPathPrefix = getenv("ANDROID_DATA"); in getTzDataOverridePath()
1018 const char* systemPathPrefix = getenv("ANDROID_ROOT"); in getSystemPath()
Dlibcore_io_Linux.cpp1264 return env->NewStringUTF(getenv(name.c_str())); in Linux_getenv()
2409 NATIVE_METHOD(Linux, getenv, "(Ljava/lang/String;)Ljava/lang/String;"),