Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixConstants.java48 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/native/
Djvm_md.h73 #define JVM_O_WRONLY O_WRONLY
DFileOutputStream_md.c58 O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC)); in FileOutputStream_open0()
Dio_util_md.c132 int devnull = open("/dev/null", O_WRONLY); in fileClose()
DFileSystemPreferences.c89 fd = open(fname, O_WRONLY|O_CREAT, permission); in Java_java_util_prefs_FileSystemPreferences_lockFile0()
Dzip_util.c99 (flags & O_WRONLY) ? GENERIC_WRITE : in ZFILE_Open()
/libcore/luni/src/main/java/java/nio/
DNioUtils.java64 boolean writable = (mode & (O_WRONLY | O_RDWR | O_SYNC)) != 0; in newFileChannel()
/libcore/luni/src/main/java/android/system/
DOsConstants.java379 public static final int O_WRONLY = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp404 initConstant(env, c, "O_WRONLY", O_WRONLY); in OsConstants_initConstants()