HomeSort by relevance Sort by last modified time
    Searched defs:statfs (Results 1 - 13 of 13) 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...]
  /external/syslinux/libinstaller/
linuxioctl.h 14 #define statfs _kernel_statfs /* HACK to deal with broken 2.4 distros */ macro
52 #undef statfs macro
  /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 */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
statfs.h 22 struct statfs { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
statfs.h 20 # error "Never include <bits/statfs.h> directly; use <sys/statfs.h> instead."
25 struct statfs struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
statfs.h 20 # error "Never include <bits/statfs.h> directly; use <sys/statfs.h> instead."
25 struct statfs struct
  /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;
135 struct statfs *statfs = (struct statfs *)&TT.stat; local
137 if (type == 'a') out('u', statfs->f_bavail);
138 else if (type == 'b') out('u', statfs->f_blocks);
139 else if (type == 'c') out('u', statfs->f_files);
140 else if (type == 'd') out('u', statfs->f_ffree);
141 else if (type == 'f') out('u', statfs->f_bfree);
142 else if (type == 'l') out('d', statfs->f_namelen)
    [all...]
  /frameworks/base/services/core/java/com/android/server/
DiskStatsService.java 26 import android.os.StatFs;
162 StatFs statfs = new StatFs(path.getPath()); local
163 long bsize = statfs.getBlockSize();
164 long avail = statfs.getAvailableBlocks();
165 long total = statfs.getBlockCount();
  /prebuilts/misc/common/robolectric/android-all/
android-all-7.0.0_r1-robolectric-0.jar 

Completed in 258 milliseconds