Searched refs:setenv (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/test/native/ |
D | libcore_java_time_TimeApisConsistencyTest.cpp | 30 setenv("TZ", nativeTimeZone, /* overwrite */ 1); in Java_libcore_java_time_TimeApisConsistencyTest_formatWithBionic() 41 setenv("TZ", oldTimeZone, /* overwrite */ 1); in Java_libcore_java_time_TimeApisConsistencyTest_formatWithBionic()
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 2171 Os.setenv(variable1, value1, false); 2172 Os.setenv(variable2, value2, false); 2181 Os.setenv(variable1, value2, false); 2182 Os.setenv(variable2, value1, false); 2190 Os.setenv(variable1, value2, true); 2191 Os.setenv(variable2, value1, true); 2209 public void setenv() { 2210 expectException(() -> Os.setenv(null, null, true), NullPointerException.class, null, 2213 expectException(() -> Os.setenv(null, "value", true), NullPointerException.class, null, 2216 expectException(() -> Os.setenv("a", null, true), NullPointerException.class, null, [all …]
|
/libcore/luni/src/main/java/libcore/io/ |
D | ForwardingOs.java | 734 …public void setenv(String name, String value, boolean overwrite) throws ErrnoException { os.setenv… in setenv() method in ForwardingOs
|
D | Os.java | 600 public void setenv(String name, String value, boolean overwrite) throws ErrnoException; in setenv() method
|
D | Linux.java | 243 public native void setenv(String name, String value, boolean overwrite) throws ErrnoException; in setenv() method in Linux
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 675 …public static void setenv(String name, String value, boolean overwrite) throws ErrnoException { Li… in setenv() method in Os
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2427 throwIfMinusOne(env, "setenv", setenv(name.c_str(), value.c_str(), overwrite)); in Linux_setenv() 2866 NATIVE_METHOD(Linux, setenv, "(Ljava/lang/String;Ljava/lang/String;Z)V"),
|
/libcore/api/ |
D | current.txt | 118 method public static void setenv(String, String, boolean) throws android.system.ErrnoException;
|