/third_party/rust/crates/rustix/tests/fs/ |
H A D | statx.rs | 8 // unknown bits. Exclude `STATX__RESERVED` here as that evokes an explicit in test_statx_unknown_flags() 11 unsafe { StatxFlags::from_bits_unchecked(!0 & !linux_raw_sys::general::STATX__RESERVED) }; in test_statx_unknown_flags() 29 // It's ok (though still unwise) to construct a `STATX__RESERVED` flag in test_statx_reserved() 32 unsafe { StatxFlags::from_bits_unchecked(linux_raw_sys::general::STATX__RESERVED) }; in test_statx_reserved() 34 Ok(_) => panic!("statx succeeded with `STATX__RESERVED`"), in test_statx_reserved()
|
/third_party/ltp/include/lapi/ |
H A D | stat.h | 185 #ifndef STATX__RESERVED 186 # define STATX__RESERVED 0x80000000U macro
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
H A D | syscalls.rs | 1521 // This includes `STATX__RESERVED`, which has a value that we know, but 1530 const STATX__RESERVED: u32 = libc::STATX__RESERVED as u32; consts 1532 const STATX__RESERVED: u32 = linux_raw_sys::general::STATX__RESERVED; consts 1533 if (mask.bits() & STATX__RESERVED) == STATX__RESERVED {
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
H A D | syscalls.rs | 40 F_GET_SEALS, F_SETFL, F_SETPIPE_SZ, SEEK_CUR, SEEK_END, SEEK_SET, STATX__RESERVED, 729 // This includes `STATX__RESERVED`, which has a value that we know, but 737 if (mask.bits() & STATX__RESERVED) == STATX__RESERVED {
|
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/ |
H A D | mod.rs | 1022 pub const STATX__RESERVED: ::c_int = 0x80000000; consts
|
/third_party/rust/crates/linux-raw-sys/src/aarch64/ |
H A D | general.rs | 1607 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/riscv64/ |
H A D | general.rs | 1607 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/riscv32/ |
H A D | general.rs | 1599 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/powerpc64/ |
H A D | general.rs | 1620 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/mips64/ |
H A D | general.rs | 1612 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/powerpc/ |
H A D | general.rs | 1614 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/mips/ |
H A D | general.rs | 1604 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/arm/ |
H A D | general.rs | 1595 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/sparc/ |
H A D | general.rs | 1848 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/s390x/ |
H A D | general.rs | 1602 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/sparc64/ |
H A D | general.rs | 1856 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/x32/ |
H A D | general.rs | 1603 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/x86/ |
H A D | general.rs | 1596 pub const STATX__RESERVED: u32 = 2147483648; consts
|
/third_party/rust/crates/linux-raw-sys/src/x86_64/ |
H A D | general.rs | 1603 pub const STATX__RESERVED: u32 = 2147483648; consts
|