Home
last modified time | relevance | path

Searched refs:ST_NOSUID (Results 1 – 21 of 21) sorted by relevance

/external/strace/xlat/
Dstatfs_flags.h20 #if defined(ST_NOSUID) || (defined(HAVE_DECL_ST_NOSUID) && HAVE_DECL_ST_NOSUID)
22 static_assert((ST_NOSUID) == (0x0002), "ST_NOSUID != 0x0002");
25 # define ST_NOSUID 0x0002
89 XLAT(ST_NOSUID),
Dstatfs_flags.in3 ST_NOSUID 0x0002
/external/openssh/openbsd-compat/
Dbsd-statvfs.h40 #ifndef ST_NOSUID
41 #define ST_NOSUID 2 macro
/external/openssh/regress/
Dsetuid-allowed.c54 return (sb.f_flag & ST_NOSUID) ? 1 : 0; in main()
/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()
134 if (stat.f_flag & ST_NOSUID) in read_mnt_flags()
/external/syzkaller/vendor/golang.org/x/sys/unix/
Dztypes_linux_s390x.go1281 ST_NOSUID = 0x2 const
Dztypes_linux_386.go1256 ST_NOSUID = 0x2 const
Dztypes_linux_mips.go1250 ST_NOSUID = 0x2 const
Dztypes_linux_amd64.go1275 ST_NOSUID = 0x2 const
Dztypes_linux_ppc64.go1264 ST_NOSUID = 0x2 const
Dztypes_linux_mips64.go1256 ST_NOSUID = 0x2 const
Dztypes_linux_mipsle.go1250 ST_NOSUID = 0x2 const
Dztypes_linux_arm.go1245 ST_NOSUID = 0x2 const
Dztypes_linux_arm64.go1254 ST_NOSUID = 0x2 const
Dztypes_linux_mips64le.go1256 ST_NOSUID = 0x2 const
Dztypes_linux_ppc64le.go1264 ST_NOSUID = 0x2 const
/external/openssh/
Dsftp-server.c618 flag |= (st->f_flag & ST_NOSUID) ? SSH2_FXE_STATVFS_ST_NOSUID : 0; in send_statvfs()
Dsftp-client.c375 st->f_flag |= (flag & SSH2_FXE_STATVFS_ST_NOSUID) ? ST_NOSUID : 0; in get_decode_statvfs()
/external/python/cpython3/Modules/
Dposixmodule.c13092 #ifdef ST_NOSUID in all_ins()
13093 if (PyModule_AddIntMacro(m, ST_NOSUID)) return -1; in all_ins()
/external/python/cpython3/Doc/library/
Dos.rst2574 read-only, and if :const:`ST_NOSUID` is set, the semantics of
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,