Searched refs:getenv (Results 1 - 21 of 21) sorted by path

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
H A DProcessBuilderTest.java100 assertEquals(System.getenv(), env);
H A DProcessManagerTest.java124 String[] environment = { "FOO=foo", "PATH=" + System.getenv("PATH") };
H A DSystemTest.java311 Map map = System.getenv();
/libcore/luni/src/main/java/android/system/
H A DOs.java172 * See <a href="http://man7.org/linux/man-pages/man3/getenv.3.html">getenv(3)</a>.
174 public static String getenv(String name) { return Libcore.os.getenv(name); } method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java82 public String getenv(String name) { return os.getenv(name); } method in class:ForwardingOs
H A DOs.java73 public String getenv(String name); method in interface:Os
H A DPosix.java76 public native String getenv(String name); method in class:Posix
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfoDB.java38 new TzData(System.getenv("ANDROID_DATA") + "/misc/zoneinfo/current/tzdata",
39 System.getenv("ANDROID_ROOT") + "/usr/share/zoneinfo/tzdata");
/libcore/luni/src/main/native/
H A Dlibcore_icu_ICU.cpp868 const char* dataPathPrefix = getenv("ANDROID_DATA");
898 const char* systemPathPrefix = getenv("ANDROID_ROOT");
H A Dlibcore_io_Posix.cpp1034 return env->NewStringUTF(getenv(name.c_str()));
1993 NATIVE_METHOD(Posix, getenv, "(Ljava/lang/String;)Ljava/lang/String;"),
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldRuntimeTest.java270 Object [] valueSet = System.getenv().values().toArray();
271 Object [] keySet = System.getenv().keySet().toArray();
H A DOldSystemTest.java280 Map<String,String> envMap = System.getenv();
292 System.getenv("PATH"));
295 System.getenv("nonexistent.property"));
298 System.getenv(null);
H A DProcessBuilderTest.java31 String deviceSh = System.getenv("ANDROID_ROOT") + "/bin/sh";
/libcore/luni/src/test/java/libcore/java/security/
H A DMessageDigestTest.java162 if (System.getenv("ANDROID_BUILD_TOP") != null) {
/libcore/luni/src/test/java/libcore/util/
H A DZoneInfoDBTest.java28 System.getenv("ANDROID_ROOT") + "/usr/share/zoneinfo/tzdata";
/libcore/ojluni/src/main/java/java/lang/
H A DProcessEnvironment.java83 /* 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
H A DSystem.java946 String javaHome = getenv("JAVA_HOME");
979 p.put("android.icu.impl.ICUBinary.dataPath", getenv("ANDROID_ROOT") + "/usr/icu");
1272 * <code>{@link RuntimePermission}("getenv."+name)</code>
1295 * <code>System.getenv("FOO").equals(System.getenv("foo"))</code>
1307 * @see #getenv()
1310 public static String getenv(String name) { method in class:System
1315 return Libcore.os.getenv(name);
1342 * <code>{@link RuntimePermission}("getenv.*")</code>
1355 * @see #getenv(Strin
1359 public static java.util.Map<String,String> getenv() { method in class:System
[all...]
/libcore/ojluni/src/main/native/
H A DSystem.c204 const char* library_path = getenv("LD_LIBRARY_PATH");
H A DUNIXProcess_md.c238 const char *s = getenv("PATH");
H A Djava_props_md.c112 current = getenv(name);
431 v = getenv("JAVA2D_FONTPATH");
467 if (getenv("GNOME_DESKTOP_SESSION_ID") != NULL) {
/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java45 String ANDROID_BUILD_TOP = System.getenv("ANDROID_BUILD_TOP");

Completed in 825 milliseconds