Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/nio/
DNioUtils.java63 boolean readable = (mode & (O_RDONLY | O_RDWR | O_SYNC)) != 0; in newFileChannel()
64 boolean writable = (mode & (O_WRONLY | O_RDWR | O_SYNC)) != 0; in newFileChannel()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixConstants.java50 static final int O_RDWR = OsConstants.O_RDWR; field in UnixConstants
DUnixChannelFactory.java190 oflags = O_RDWR; in open()
/libcore/ojluni/src/main/native/
Djvm_md.h74 #define JVM_O_RDWR O_RDWR
DFileDispatcherImpl.c271 int preCloseFD = open("/dev/null", O_RDWR | O_CLOEXEC); in FileDispatcherImpl_preClose0()
DUnixFileSystem_md.c261 fd = handleOpen(path, O_RDWR | O_CREAT | O_EXCL, 0666); in Java_java_io_UnixFileSystem_createFileExclusively0()
Dzip_util.c98 (flags & O_RDWR) ? (GENERIC_WRITE | GENERIC_READ) : in ZFILE_Open()
/libcore/luni/src/test/java/libcore/dalvik/system/
DBlockGuardTest.java258 FileDescriptor fd = Os.open(temp.getPath(), OsConstants.O_RDWR, 0); in testOpen()
/libcore/ojluni/src/main/java/java/io/
DRandomAccessFile.java240 imode = O_RDWR | O_CREAT; in RandomAccessFile()
/libcore/luni/src/main/java/android/system/
DOsConstants.java377 public static final int O_RDWR = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp403 initConstant(env, c, "O_RDWR", O_RDWR); in OsConstants_initConstants()