Home
last modified time | relevance | path

Searched refs:statfs (Results 1 – 25 of 207) sorted by relevance

123456789

/external/toybox/toys/other/
Dstat.c48 struct statfs sf;
137 struct statfs *statfs = (struct statfs *)&TT.stat; in print_statfs() local
139 if (type == 'a') out('u', statfs->f_bavail); in print_statfs()
140 else if (type == 'b') out('u', statfs->f_blocks); in print_statfs()
141 else if (type == 'c') out('u', statfs->f_files); in print_statfs()
142 else if (type == 'd') out('u', statfs->f_ffree); in print_statfs()
143 else if (type == 'f') out('u', statfs->f_bfree); in print_statfs()
150 out('d', statfs->f_namelen); in print_statfs()
152 } else if (type == 't') out('x', statfs->f_type); in print_statfs()
153 else if (type == 'T') strout(fs_type_name(statfs)); in print_statfs()
[all …]
Dswitch_root.c48 struct statfs stfs; in switch_root_main()
54 if (statfs("/", &stfs) || in switch_root_main()
/external/openssh/openbsd-compat/
Dbsd-statvfs.c35 copy_statfs_to_statvfs(struct statvfs *to, struct statfs *from) in copy_statfs_to_statvfs()
58 struct statfs fs; in statvfs()
61 if (statfs(path, &fs) == -1) in statvfs()
76 struct statfs fs; in fstatvfs()
/external/ltp/testcases/kernel/syscalls/statfs/
Dstatfs02.c55 static struct statfs buf;
59 struct statfs *buf;
67 {TEST_FILE, (struct statfs *)-1, EFAULT},
119 TEST(statfs(test->path, test->buf)); in statfs_verify()
Dstatfs01.c128 struct statfs stats;
143 TEST(statfs(fname, &stats)); in main()
Dstatfs03.c69 struct statfs buf;
86 TEST(statfs(path, &buf)); in main()
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd11/
Dmod.rs44 pub struct statfs {
74 impl PartialEq for statfs {
75 fn eq(&self, other: &statfs) -> bool {
106 impl Eq for statfs {}
107 impl ::fmt::Debug for statfs {
130 impl ::hash::Hash for statfs {
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/freebsd12/
Dmod.rs43 pub struct statfs {
71 impl PartialEq for statfs {
72 fn eq(&self, other: &statfs) -> bool {
103 impl Eq for statfs {}
104 impl ::fmt::Debug for statfs {
127 impl ::hash::Hash for statfs {
/external/tcpdump/lbl/
Dos-sunos4.h79 struct statfs;
81 int fstatfs(int, struct statfs *);
167 int statfs(char *, struct statfs *);
/external/libpcap/lbl/
Dos-sunos4.h78 struct statfs;
80 int fstatfs(int, struct statfs *);
165 int statfs(char *, struct statfs *);
/external/ltp/lib/
Dtst_fs_has_free.c32 struct statfs sf; in tst_fs_has_free_()
34 if (statfs(path, &sf)) { in tst_fs_has_free_()
Dtst_fs_type.c35 struct statfs sbuf; in tst_fs_type_()
37 if (statfs(path, &sbuf)) { in tst_fs_type_()
/external/libchrome/base/files/
Dfile_util_linux.cc17 struct statfs statfs_buf; in GetFileSystemType()
18 if (statfs(path.value().c_str(), &statfs_buf) < 0) { in GetFileSystemType()
/external/ltp/testcases/open_posix_testsuite/include/
Dnoatime.h79 struct statfs _statfs; in mounted_noatime()
81 if (statfs(path, &_statfs) == -1) { in mounted_noatime()
/external/libchrome/base/
Dsys_info_posix.cc29 #define statvfs statfs // Android uses a statvfs-like statfs struct and call.
88 struct statfs stats; in IsStatsZeroIfUnlimited()
90 if (HANDLE_EINTR(statfs(path.value().c_str(), &stats)) != 0) in IsStatsZeroIfUnlimited()
/external/ltp/testcases/kernel/syscalls/fstatfs/
Dfstatfs02.c36 static struct statfs buf;
40 struct statfs *sbuf;
/external/toybox/lib/
Dportability.c59 struct statfs *entries; in xgetmountlist()
70 struct statfs *me = &entries[i]; in xgetmountlist()
552 char *fs_type_name(struct statfs *statfs) in fs_type_name() argument
557 return statfs->f_fstypename; in fs_type_name()
573 if (nn[i].num == statfs->f_type) s = nn[i].name; in fs_type_name()
574 if (!s) sprintf(s = libbuf, "0x%x", (unsigned)statfs->f_type); in fs_type_name()
/external/ltp/testcases/kernel/syscalls/fanotify/
Dfanotify.h141 struct statfs stats; in fanotify_get_fid()
143 if (statfs(path, &stats) == -1) in fanotify_get_fid()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mmap/
D11-4.c67 struct statfs buf; in main()
69 if (statfs("/tmp", &buf)) { in main()
/external/selinux/libselinux/src/
Dinit.c34 struct statfs sfbuf; in verify_selinuxmnt()
38 rc = statfs(mnt, &sfbuf); in verify_selinuxmnt()
/external/bcc/tools/
Dttysnoop_example.txt57 Oct 16 01:32:38 bgregg-xenial-bpf-i-xxx snmpd[2708]: Cannot statfs /sys/kernel/debug/tracing: Permi…
58 Oct 16 01:33:32 bgregg-xenial-bpf-i-xxx snmpd[2708]: Cannot statfs /sys/kernel/debug/tracing: Permi…
59 Oct 16 01:34:26 bgregg-xenial-bpf-i-xxx snmpd[2708]: Cannot statfs /sys/kernel/debug/tracing: Permi…
/external/libchrome/libchrome_tools/patch/
Dstatfs_f_type.patch18 // Missing values are copied from the statfs man page.
30 if (HANDLE_EINTR(statfs(path.value().c_str(), &stats)) != 0)
/external/rust/crates/libc/src/unix/bsd/freebsdlike/dragonfly/
Dmod.rs206 pub struct statfs {
338 impl PartialEq for statfs {
339 fn eq(&self, other: &statfs) -> bool {
368 impl Eq for statfs {}
369 impl ::fmt::Debug for statfs {
392 impl ::hash::Hash for statfs {
1086 pub fn statfs(path: *const ::c_char, buf: *mut statfs) -> ::c_int; in statfs() function
1087 pub fn fstatfs(fd: ::c_int, buf: *mut statfs) -> ::c_int; in fstatfs()
/external/fsck_msdos/
Dfsutil.c160 struct statfs *
166 struct statfs *mntbuf, *statfsp; in getmntpt()
/external/strace/tests-m32/
Dtrace_statfs_like.gen.test4 test_trace_expr '' -e%%statfs

123456789