| /third_party/musl/arch/x32/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, __pad0, f_bsize, __pad1; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, __pad2, f_frsize, __pad3; 7 unsigned long f_flags, __pad4; 8 unsigned long long f_spare[4];
|
| /third_party/musl/porting/uniproton/kernel/include/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/musl/porting/liteos_a_newlib/kernel/include/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/musl/porting/liteos_m/kernel/include/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/musl/arch/mips64/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize, f_frsize; 3 fsblkcnt_t f_blocks, f_bfree; 4 fsfilcnt_t f_files, f_ffree; 5 fsblkcnt_t f_bavail; 6 fsid_t f_fsid; 7 unsigned long f_namelen, f_flags, f_spare[5];
|
| /third_party/musl/porting/liteos_a/kernel/include/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/musl/arch/mips/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize, f_frsize; 3 fsblkcnt_t f_blocks, f_bfree; 4 fsfilcnt_t f_files, f_ffree; 5 fsblkcnt_t f_bavail; 6 fsid_t f_fsid; 7 unsigned long f_namelen, f_flags, f_spare[5];
|
| /third_party/musl/arch/mipsn32/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize, f_frsize; 3 fsblkcnt_t f_blocks, f_bfree; 4 fsfilcnt_t f_files, f_ffree; 5 fsblkcnt_t f_bavail; 6 fsid_t f_fsid; 7 unsigned long f_namelen, f_flags, f_spare[5];
|
| /third_party/musl/arch/generic/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned long f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned long f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/musl/arch/s390x/bits/ |
| D | statfs.h | 1 struct statfs { struct 2 unsigned f_type, f_bsize; 3 fsblkcnt_t f_blocks, f_bfree, f_bavail; 4 fsfilcnt_t f_files, f_ffree; 5 fsid_t f_fsid; 6 unsigned f_namelen, f_frsize, f_flags, f_spare[4];
|
| /third_party/NuttX/include/sys/ |
| D | statfs.h | 102 struct statfs struct 127 /* Inspired by Linux statfs() which was, in turn, inspired by argument
|
| /third_party/rust/crates/rustix/tests/fs/ |
| D | statfs.rs | 45 let statfs = rustix::fs::statfs("Cargo.toml").unwrap(); in test_statfs() localVariable 56 let statfs = rustix::fs::fstatfs(&file).unwrap(); in test_fstatfs() localVariable 67 let statfs = rustix::fs::statfs("/proc/self/maps").unwrap(); in test_statfs_procfs() localVariable
|
| D | file.rs | 78 let statfs = rustix::fs::fstatfs(&file).unwrap(); in test_file() localVariable
|
| D | main.rs | 47 mod statfs; module
|
| /third_party/rust/crates/rustix/src/fs/ |
| D | abs.rs | 42 pub fn statfs<P: path::Arg>(path: P) -> io::Result<StatFs> { in statfs() function
|
| /third_party/NuttX/fs/vfs/ |
| D | fs_statfs.c | 56 int statfs(const char *path, struct statfs *buf) in statfs() function
|
| /third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
| D | ohos_statfs.js | 19 const statfs = { variable
|
| /third_party/node/test/parallel/ |
| D | test-fs-statfs.js | 6 function verifyStatFsObject(statfs, isBigint = false) { argument
|
| /third_party/toybox/toys/other/ |
| D | stat.c | 137 struct statfs *statfs = (struct statfs *)&TT.stat; in print_statfs() local
|
| /third_party/rust/crates/nix/test/ |
| D | test_fcntl.rs | 386 let statfs = nix::sys::statfs::fstatfs(&tmp).unwrap(); in test_ofd_write_lock() localVariable 424 let statfs = nix::sys::statfs::fstatfs(&tmp).unwrap(); in test_ofd_read_lock() localVariable
|
| /third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
| D | dir.rs | 167 pub fn statfs(&self) -> io::Result<StatFs> { in statfs() method
|
| D | syscalls.rs | 801 let statfs = fstatfs(fd)?; in fstatvfs() localVariable 807 pub(crate) fn statfs(filename: &CStr) -> io::Result<StatFs> { in statfs() function 831 let statfs = statfs(filename)?; in statvfs() localVariable
|
| /third_party/rust/crates/rustix/src/io/ |
| D | procfs.rs | 175 let statfs = fstatfs(file)?; in check_procfs() localVariable
|
| /third_party/rust/crates/rustix/src/backend/libc/fs/ |
| D | dir.rs | 150 pub fn statfs(&self) -> io::Result<StatFs> { in statfs() method
|