Home
last modified time | relevance | path

Searched refs:ST_RDONLY (Results 1 – 22 of 22) sorted by relevance

/external/strace/xlat/
Dstatfs_flags.h13 #if defined(ST_RDONLY) || (defined(HAVE_DECL_ST_RDONLY) && HAVE_DECL_ST_RDONLY)
15 static_assert((ST_RDONLY) == (0x0001), "ST_RDONLY != 0x0001");
18 # define ST_RDONLY 0x0001
88 XLAT(ST_RDONLY),
Dstatfs_flags.in2 ST_RDONLY 0x0001
/external/openssh/openbsd-compat/
Dbsd-statvfs.h37 #ifndef ST_RDONLY
38 #define ST_RDONLY 1 macro
/external/linux-kselftest/tools/testing/selftests/mount/
Dunprivileged-remount-test.c126 if (stat.f_flag & ~(ST_RDONLY | ST_NOSUID | ST_NODEV | \ in read_mnt_flags()
132 if (stat.f_flag & ST_RDONLY) in read_mnt_flags()
/external/selinux/libselinux/src/
Dinit.c45 if (!(vfsbuf.f_flag & ST_RDONLY)) { in verify_selinuxmnt()
/external/syzkaller/vendor/golang.org/x/sys/unix/
Dztypes_linux_s390x.go1282 ST_RDONLY = 0x1 const
Dztypes_linux_386.go1257 ST_RDONLY = 0x1 const
Dztypes_linux_mips.go1251 ST_RDONLY = 0x1 const
Dztypes_linux_amd64.go1276 ST_RDONLY = 0x1 const
Dztypes_linux_ppc64.go1265 ST_RDONLY = 0x1 const
Dztypes_linux_mips64.go1257 ST_RDONLY = 0x1 const
Dztypes_linux_mipsle.go1251 ST_RDONLY = 0x1 const
Dztypes_linux_arm.go1246 ST_RDONLY = 0x1 const
Dztypes_linux_arm64.go1255 ST_RDONLY = 0x1 const
Dztypes_linux_mips64le.go1257 ST_RDONLY = 0x1 const
Dztypes_linux_ppc64le.go1265 ST_RDONLY = 0x1 const
/external/openssh/
Dsftp-server.c617 flag = (st->f_flag & ST_RDONLY) ? SSH2_FXE_STATVFS_ST_RDONLY : 0; in send_statvfs()
Dsftp-client.c374 st->f_flag = (flag & SSH2_FXE_STATVFS_ST_RDONLY) ? ST_RDONLY : 0; in get_decode_statvfs()
/external/python/cpython3/Modules/
Dposixmodule.c13089 #ifdef ST_RDONLY in all_ins()
13090 if (PyModule_AddIntMacro(m, ST_RDONLY)) return -1; in all_ins()
/external/e2fsprogs/misc/
Dfuse2fs.c2388 buf->f_flag |= ST_RDONLY; in op_statfs()
/external/python/cpython3/Doc/library/
Dos.rst2573 bit-flags: if :const:`ST_RDONLY` is set, the filesystem is mounted
2591 The :const:`ST_RDONLY` and :const:`ST_NOSUID` constants were added.
/external/python/cpython3/Misc/
DHISTORY12519 - Issue #7647: The posix module now has the ST_RDONLY and ST_NOSUID constants,