HomeSort by relevance Sort by last modified time
    Searched defs:statfs (Results 1 - 8 of 8) sorted by null

  /bionic/libc/bionic/
statvfs.cpp 19 #include <sys/statfs.h>
24 extern "C" int __fstatfs(int, struct statfs*);
25 extern "C" int __statfs(const char*, struct statfs*);
29 extern "C" int __fstatfs64(int, size_t, struct statfs*);
30 extern "C" int __statfs64(const char*, size_t, struct statfs*);
37 static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) {
51 int fstatfs(int fd, struct statfs* result) {
61 int statfs(const char* path, struct statfs* result) { function
69 __strong_alias(statfs64, statfs);
    [all...]
  /bionic/libc/kernel/uapi/asm-generic/
statfs.h 29 struct statfs { struct
  /bionic/libc/kernel/uapi/asm-mips/asm/
statfs.h 23 struct statfs { struct
  /external/kernel-headers/original/uapi/asm-generic/
statfs.h 23 struct statfs { struct
  /external/kernel-headers/original/uapi/asm-mips/asm/
statfs.h 23 struct statfs { struct
66 struct statfs64 { /* Same as struct statfs */
  /bionic/libc/include/sys/
vfs.h 108 struct statfs { __STATFS64_BODY }; struct
140 int statfs(const char* __path, struct statfs* __buf);
142 int fstatfs(int __fd, struct statfs* __buf);
  /external/toybox/toys/other/
stat.c 47 struct statfs sf;
131 struct statfs *statfs = (struct statfs *)&TT.stat; local
133 if (type == 'a') out('u', statfs->f_bavail);
134 else if (type == 'b') out('u', statfs->f_blocks);
135 else if (type == 'c') out('u', statfs->f_files);
136 else if (type == 'd') out('u', statfs->f_ffree);
137 else if (type == 'f') out('u', statfs->f_bfree);
138 else if (type == 'l') out('d', statfs->f_namelen)
    [all...]
  /external/u-boot/fs/ubifs/
ubifs.h 19 #include <linux/statfs.h>
267 int (*statfs) (struct dentry *, struct kstatfs *); member in struct:super_operations
    [all...]

Completed in 788 milliseconds