Home
last modified time | relevance | path

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

/libcore/luni/src/main/native/
Djava_lang_System.cpp31 return env->NewStringUTF(getenv(name.c_str())); in System_getEnvByName()
Djava_lang_ProcessManager.cpp375 char* fdString = getenv("ANDROID_PROPERTY_WORKSPACE"); in ProcessManager_staticInitialize()
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
DSystemTest.java603 Map map = System.getenv(); in testEnvUnmodifiable()
743 Map<String,String> envMap = System.getenv(); in test_getenv()
762 System.getenv("PATH")); in test_getenvLString()
765 System.getenv("nonexistent.property")); in test_getenvLString()
768 System.getenv(null); in test_getenvLString()
DRuntimeTest.java477 Object [] valueSet = System.getenv().values().toArray(); in getEnv()
478 Object [] keySet = System.getenv().keySet().toArray(); in getEnv()
/libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
DDalvikExecTest.java42 String base = System.getenv("OUT"); in execDalvik1()
49 if ("true".equals(System.getenv("TARGET_SIMULATOR"))) { in execDalvik1()
/libcore/luni/src/main/java/java/lang/
DProcessBuilder.java71 this.environment = new Hashtable<String, String>(System.getenv()); in ProcessBuilder()
DSystem.java238 public static String getenv(String name) { in getenv() method in System
266 public static Map<String, String> getenv() { in getenv() method in System
/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
DZoneInfoDB.java45 System.getenv("ANDROID_ROOT") + "/usr/share/zoneinfo/";
/libcore/luni/src/test/java/tests/api/java/lang/
DProcessManagerTest.java154 String[] environment = { "FOO=foo", "PATH=" + System.getenv("PATH") }; in testEnvironment()