Searched refs:ST_NOSUID (Results 1 – 21 of 21) sorted by relevance
20 #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 0x000289 XLAT(ST_NOSUID),
3 ST_NOSUID 0x0002
40 #ifndef ST_NOSUID41 #define ST_NOSUID 2 macro
54 return (sb.f_flag & ST_NOSUID) ? 1 : 0; in main()
126 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()
1250 ST_NOSUID = 0x2 const
1245 ST_NOSUID = 0x2 const
1254 ST_NOSUID = 0x2 const
1264 ST_NOSUID = 0x2 const
1275 ST_NOSUID = 0x2 const
1256 ST_NOSUID = 0x2 const
1281 ST_NOSUID = 0x2 const
618 flag |= (st->f_flag & ST_NOSUID) ? SSH2_FXE_STATVFS_ST_NOSUID : 0; in send_statvfs()
375 st->f_flag |= (flag & SSH2_FXE_STATVFS_ST_NOSUID) ? ST_NOSUID : 0; in get_decode_statvfs()
13092 #ifdef ST_NOSUID in all_ins()13093 if (PyModule_AddIntMacro(m, ST_NOSUID)) return -1; in all_ins()
2574 read-only, and if :const:`ST_NOSUID` is set, the semantics of2591 The :const:`ST_RDONLY` and :const:`ST_NOSUID` constants were added.
12519 - Issue #7647: The posix module now has the ST_RDONLY and ST_NOSUID constants,