Home
last modified time | relevance | path

Searched refs:S_IWUSR (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixFileModeAttribute.java33 UnixConstants.S_IRUSR | UnixConstants.S_IWUSR | UnixConstants.S_IXUSR |
38 UnixConstants.S_IRUSR | UnixConstants.S_IWUSR |
43 UnixConstants.S_IRUSR | UnixConstants.S_IWUSR | UnixConstants.S_IXUSR;
55 case OWNER_WRITE : mode |= UnixConstants.S_IWUSR; break; in toUnixMode()
DUnixConstants.java63 static final int S_IWUSR = OsConstants.S_IWUSR; field in UnixConstants
136 return (OsConstants.S_IRUSR | OsConstants.S_IWUSR | OsConstants.S_IXUSR | in get_S_IAMB()
DUnixFileAttributes.java222 if ((bits & UnixConstants.S_IWUSR) > 0) in permissions()
/libcore/luni/src/test/java/libcore/android/system/
DOsConstantsTest.java221 assertFalse(S_ISLNK(OsConstants.S_IWUSR)); in test_S_ISLNK()
249 assertFalse(S_ISREG(OsConstants.S_IWUSR)); in test_S_ISREG()
277 assertFalse(S_ISDIR(OsConstants.S_IWUSR)); in test_S_ISDIR()
305 assertFalse(S_ISCHR(OsConstants.S_IWUSR)); in test_S_ISCHR()
333 assertFalse(S_ISBLK(OsConstants.S_IWUSR)); in test_S_ISBLK()
361 assertFalse(S_ISFIFO(OsConstants.S_IWUSR)); in test_S_ISFIFO()
389 assertFalse(S_ISSOCK(OsConstants.S_IWUSR)); in test_S_ISSOCK()
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/ojluni/src/main/native/
DUnixFileSystem_md.c220 amode = S_IWUSR; in Java_java_io_UnixFileSystem_setPermission0()
222 amode = S_IWUSR | S_IWGRP | S_IWOTH; in Java_java_io_UnixFileSystem_setPermission0()
484 if (chmod(path, mode & ~(S_IWUSR | S_IWGRP | S_IWOTH)) >= 0) { in Java_java_io_UnixFileSystem_setReadOnly0()
/libcore/luni/annotations/flagged_api/android/system/
DOsConstants.annotated.java1259 public static final int S_IWUSR; field in OsConstants
1260 static { S_IWUSR = 0; }
/libcore/luni/src/main/java/android/system/
DOsConstants.java796 public static final int S_IWUSR = placeholder(); field in OsConstants
/libcore/luni/src/main/native/
Dandroid_system_OsConstants.cpp612 initConstant(env, c, "S_IWUSR", S_IWUSR); in OsConstants_initConstants()
/libcore/api/
Dcurrent.txt561 field public static final int S_IWUSR;