Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/libcore/timezone/
DTimeZoneDataFilesTest.java35 assertNotNull(System.getenv(ANDROID_TZDATA_ROOT_ENV)); in expectedEnvironmentVariables()
36 assertNotNull(System.getenv(ANDROID_RUNTIME_ROOT_ENV)); in expectedEnvironmentVariables()
47 assertTrue(paths[1].startsWith(System.getenv(ANDROID_TZDATA_ROOT_ENV))); in getTimeZoneFilePaths()
50 assertTrue(paths[2].startsWith(System.getenv(ANDROID_RUNTIME_ROOT_ENV))); in getTimeZoneFilePaths()
71 tzdataModulePath.startsWith(System.getenv(ANDROID_TZDATA_ROOT_ENV))); in generateIcuDataPath_includesTimeZoneOverride()
75 runtimeModulePath.startsWith(System.getenv(ANDROID_RUNTIME_ROOT_ENV))); in generateIcuDataPath_includesTimeZoneOverride()
/libcore/luni/src/main/java/libcore/timezone/
DTimeZoneDataFiles.java60 return System.getenv(ANDROID_DATA_ENV) + "/misc/zoneinfo/"; in getDataTimeZoneRootDir()
69 return System.getenv(ANDROID_TZDATA_ROOT_ENV) + "/etc/" + fileName; in getTimeZoneModuleFile()
79 return System.getenv(ANDROID_RUNTIME_ROOT_ENV) + "/etc/" + fileName; in getRuntimeModuleFile()
122 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.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 public static java.util.Map<java.lang.String,java.lang.String> getenv() { throw new RuntimeExceptio… in getenv() method in System
/libcore/ojluni/src/main/java/java/lang/
DSystem.java980 String javaHome = getenv("JAVA_HOME"); in initUnchangeableSystemProperties()
1415 public static String getenv(String name) { in getenv() method in System
1420 return Libcore.os.getenv(name); in getenv()
1464 public static java.util.Map<String,String> getenv() { in getenv() method in System
1470 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/
DStandardRepositories.java85 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.c207 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/libcore/io/
DForwardingOs.java117 public String getenv(String name) { return os.getenv(name); } in getenv() method in ForwardingOs
DOs.java92 public String getenv(String name); in getenv() method
DLinux.java91 public native String getenv(String name); in getenv() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java213 public static String getenv(String name) { return Libcore.os.getenv(name); } in getenv() method in Os
/libcore/luni/src/main/native/
Dlibcore_icu_ICU.cpp1028 const char* dataPathPrefix = getenv("ANDROID_DATA"); in getDataTimeZonePath()
1042 const char* tzdataModulePathPrefix = getenv("ANDROID_TZDATA_ROOT"); in getTimeZoneModulePath()
1055 const char* runtimeModulePathPrefix = getenv("ANDROID_RUNTIME_ROOT"); in getRuntimeModulePath()
Dlibcore_io_Linux.cpp1407 return env->NewStringUTF(getenv(name.c_str())); in Linux_getenv()
2618 NATIVE_METHOD(Linux, getenv, "(Ljava/lang/String;)Ljava/lang/String;"),