Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/nio/
DNioUtils.java33 import static android.system.OsConstants.O_WRONLY;
82 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.java195 oflags = (flags.write) ? O_WRONLY : O_RDONLY; in open()
DUnixCopyFile.java238 (O_WRONLY | in copyFile()
/libcore/ojluni/src/main/native/
Djvm_md.h75 #define JVM_O_WRONLY O_WRONLY
DFileSystemPreferences.c91 fd = open(fname, O_WRONLY|O_CREAT, permission); in Java_java_util_prefs_FileSystemPreferences_lockFile0()
Dio_util_md.c175 int devnull = open("/dev/null", O_WRONLY); in fileDescriptorClose()
Dzip_util.c113 (flags & O_WRONLY) ? GENERIC_WRITE : in ZFILE_Open()
/libcore/ojluni/src/main/java/java/io/
DFileOutputStream.java32 import static android.system.OsConstants.O_WRONLY;
258 int flags = O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC); in FileOutputStream()
/libcore/luni/annotations/flagged_api/android/system/
DOsConstants.annotated.java876 public static final int O_WRONLY; field in OsConstants
877 static { O_WRONLY = 0; }
/libcore/luni/src/main/java/android/system/
DOsConstants.java525 public static final int O_WRONLY = placeholder(); field in OsConstants
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1825 FileDescriptor fd = Os.open(testFile.toString(), O_WRONLY, S_IRUSR | S_IWUSR);
1895 Os.open(testFile.toString(), O_WRONLY | O_DIRECT, S_IRUSR | S_IWUSR);
1912 Os.open(testFile.toString(), O_WRONLY | O_CREAT | O_APPEND, S_IRUSR | S_IWUSR);
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp429 initConstant(env, c, "O_WRONLY", O_WRONLY); in OsConstants_initConstants()
/libcore/api/
Dcurrent.txt434 field public static final int O_WRONLY;