Home
last modified time | relevance | path

Searched defs:statfs (Results 1 – 25 of 53) sorted by relevance

123

/third_party/musl/arch/x32/bits/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h1 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/
Dstatfs.h102 struct statfs struct
127 /* Inspired by Linux statfs() which was, in turn, inspired by argument
/third_party/rust/crates/rustix/tests/fs/
Dstatfs.rs45 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
Dfile.rs78 let statfs = rustix::fs::fstatfs(&file).unwrap(); in test_file() localVariable
Dmain.rs47 mod statfs; module
/third_party/rust/crates/rustix/src/fs/
Dabs.rs42 pub fn statfs<P: path::Arg>(path: P) -> io::Result<StatFs> { in statfs() function
/third_party/NuttX/fs/vfs/
Dfs_statfs.c56 int statfs(const char *path, struct statfs *buf) in statfs() function
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_statfs.js19 const statfs = { variable
/third_party/node/test/parallel/
Dtest-fs-statfs.js6 function verifyStatFsObject(statfs, isBigint = false) { argument
/third_party/toybox/toys/other/
Dstat.c137 struct statfs *statfs = (struct statfs *)&TT.stat; in print_statfs() local
/third_party/rust/crates/nix/test/
Dtest_fcntl.rs386 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/
Ddir.rs167 pub fn statfs(&self) -> io::Result<StatFs> { in statfs() method
Dsyscalls.rs801 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/
Dprocfs.rs175 let statfs = fstatfs(file)?; in check_procfs() localVariable
/third_party/rust/crates/rustix/src/backend/libc/fs/
Ddir.rs150 pub fn statfs(&self) -> io::Result<StatFs> { in statfs() method

123