Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/nio/
DNioUtils.java67 boolean readable = (mode & (O_RDONLY | O_RDWR | O_SYNC)) != 0; in newFileChannel()
68 boolean writable = (mode & (O_WRONLY | O_RDWR | O_SYNC)) != 0; in newFileChannel()
/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixConstants.java43 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.h80 #define JVM_O_RDWR O_RDWR
DFileDispatcherImpl.c273 int preCloseFD = open("/dev/null", O_RDWR | O_CLOEXEC); in FileDispatcherImpl_preClose0()
DUnixFileSystem_md.c269 fd = handleOpen(path, O_RDWR | O_CREAT | O_EXCL, 0666); in Java_java_io_UnixFileSystem_createFileExclusively0()
Dnet_util_md.c154 s = open (driver, O_RDWR); in getParam()
Dzip_util.c100 (flags & O_RDWR) ? (GENERIC_WRITE | GENERIC_READ) : in ZFILE_Open()
/libcore/luni/src/test/java/libcore/dalvik/system/
DBlockGuardTest.java291 FileDescriptor fd = Os.open(temp.getPath(), OsConstants.O_RDWR, 0); in testOpen()
/libcore/ojluni/src/main/java/java/io/
DRandomAccessFile.java241 imode = O_RDWR | O_CREAT; in RandomAccessFile()
/libcore/luni/src/main/java/android/system/
DOsConstants.java412 public static final int O_RDWR = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp405 initConstant(env, c, "O_RDWR", O_RDWR); in OsConstants_initConstants()