Home
last modified time | relevance | path

Searched refs:O_WRONLY (Results 1 – 12 of 12) sorted by relevance

/libcore/luni/src/main/java/java/nio/
DNioUtils.java30 import static android.system.OsConstants.O_WRONLY;
67 boolean readable = (mode & O_ACCMODE) != O_WRONLY; in newFileChannel()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixConstants.java41 static final int O_WRONLY = OsConstants.O_WRONLY; field in UnixConstants
DUnixChannelFactory.java192 oflags = (flags.write) ? O_WRONLY : O_RDONLY; in open()
DUnixCopyFile.java238 (O_WRONLY | in copyFile()
/libcore/ojluni/src/main/java/java/io/
DFileOutputStream.java32 import static android.system.OsConstants.O_WRONLY;
235 int flags = O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC); in FileOutputStream()
/libcore/ojluni/src/main/native/
Djvm_md.h79 #define JVM_O_WRONLY O_WRONLY
Dio_util_md.c140 int devnull = open("/dev/null", O_WRONLY); in fileClose()
DFileSystemPreferences.c91 fd = open(fname, O_WRONLY|O_CREAT, permission); in Java_java_util_prefs_FileSystemPreferences_lockFile0()
Dzip_util.c101 (flags & O_WRONLY) ? GENERIC_WRITE : in ZFILE_Open()
/libcore/luni/src/main/java/android/system/
DOsConstants.java416 public static final int O_WRONLY = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp413 initConstant(env, c, "O_WRONLY", O_WRONLY); in OsConstants_initConstants()
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1371 Os.open(testFile.toString(), O_WRONLY | O_DIRECT, S_IRUSR | S_IWUSR); in test_odirect()