/external/openssh/openbsd-compat/ |
H A D | bsd-statvfs.h | 1 /* $Id: bsd-statvfs.h,v 1.3 2014/01/17 07:48:22 dtucker Exp $ */ 47 struct statvfs { struct 66 int statvfs(const char *, struct statvfs *); 70 int fstatvfs(int, struct statvfs *);
|
H A D | bsd-statvfs.c | 1 /* $Id: bsd-statvfs.c,v 1.2 2014/01/17 07:10:59 dtucker Exp $ */ 37 copy_statfs_to_statvfs(struct statvfs *to, struct statfs *from) 57 int statvfs(const char *path, struct statvfs *buf) function 75 int fstatvfs(int fd, struct statvfs *buf)
|
/external/clang/test/CodeGenCXX/ |
H A D | redefine_extname.cpp | 7 #pragma redefine_extname statvfs64 statvfs 16 // CHECK: call i32 @statvfs(%struct.statvfs64* %st)
|
/external/libchrome/base/ |
H A D | sys_info_posix.cc | 26 #define statvfs statfs // Android uses a statvfs-like statfs struct and call. macro 28 #include <sys/statvfs.h> 95 struct statvfs stats; 96 if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0)
|
/external/toybox/toys/posix/ |
H A D | df.c | 102 if (!(toys.optflags & FLAG_a) && !mt->statvfs.f_blocks) return; 106 block = mt->statvfs.f_bsize ? mt->statvfs.f_bsize : 1; 107 size = (block * mt->statvfs.f_blocks) / TT.units; 108 used = (block * (mt->statvfs.f_blocks-mt->statvfs.f_bfree)) / TT.units; 109 avail = (block*(getuid()?mt->statvfs.f_bavail:mt->statvfs.f_bfree))/TT.units;
|
/external/selinux/libselinux/src/ |
H A D | init.c | 10 #include <sys/statvfs.h> 44 struct statvfs vfsbuf; 45 rc = statvfs(mnt, &vfsbuf);
|
/external/autotest/client/site_tests/platform_EncryptedStateful/ |
H A D | platform_EncryptedStateful.py | 152 top = os.statvfs(self.stateful) 166 info = os.statvfs(self.encrypted) 209 orig = os.statvfs(self.stateful) 216 filled = os.statvfs(self.stateful) 222 done = os.statvfs(self.stateful)
|
/external/toybox/lib/ |
H A D | getmountlist.c | 153 // Get list of mounted filesystems, including stat and statvfs info. 178 statvfs(me->mnt_dir, &(mt->statvfs));
|
H A D | lib.h | 255 struct statvfs statvfs; member in struct:mtab_list
|
/external/toybox/ |
H A D | toys.h | 36 #include <sys/statvfs.h>
|
/external/valgrind/memcheck/tests/x86-solaris/ |
H A D | scalar.c | 7 #include <sys/statvfs.h>
|
/external/webrtc/webrtc/base/ |
H A D | unixfilesystem.cc | 22 #include <sys/statvfs.h> 31 #include <sys/statvfs.h> 525 struct statvfs vfs; 527 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
|
/external/curl/lib/ |
H A D | ssh.c | 1379 else if(curl_strnequal(cmd, "statvfs ", 8)) { 1637 LIBSSH2_SFTP_STATVFS statvfs; local 1640 &statvfs); 1648 failf(data, "statvfs command failed: %s", sftp_libssh2_strerror(err)); 1655 char *tmp = aprintf("statvfs:\n" 1662 statvfs.f_bsize, statvfs.f_frsize, 1663 statvfs.f_blocks, statvfs.f_bfree, 1664 statvfs [all...] |
/external/selinux/policycoreutils/setfiles/ |
H A D | restore.c | 297 #include <sys/statvfs.h> 629 struct statvfs statvfs_buf; 632 if (!statvfs(name, &statvfs_buf)) {
|
/external/autotest/client/tests/ffsb/ |
H A D | ffsb.py | 63 f = os.statvfs(mntpt)
|
/external/openssh/ |
H A D | Android.mk | 72 openbsd-compat/bsd-statvfs.c \
|
H A D | sftp-server.c | 30 #include <sys/statvfs.h> 151 { "statvfs", "statvfs@openssh.com", 0, process_extended_statvfs, 0 }, 615 send_statvfs(u_int32_t id, struct statvfs *st) 662 /* statvfs extension */ 663 (r = sshbuf_put_cstring(msg, "statvfs@openssh.com")) != 0 || 1304 struct statvfs st; 1309 debug3("request %u: statvfs", id); 1310 logit("statvfs \"%s\"", path); 1312 if (statvfs(pat [all...] |
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/io/ |
H A D | UnixFileTest.java | 91 StructStatVfs stat = Libcore.os.statvfs(file.getAbsolutePath());
|
/external/toybox/scripts/ |
H A D | config2help.c | 13 struct statvfs {int i;}; struct
|
/external/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_platform_limits_posix.cc | 95 # include <sys/statvfs.h> 158 #include <sys/statvfs.h> 266 unsigned struct_statvfs_sz = sizeof(struct statvfs);
|
/external/autotest/client/bin/ |
H A D | base_utils.py | 751 s = os.statvfs(path) 757 return os.statvfs(path).f_bsize
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
H A D | util.py | 218 (_, f_frsize, _, _, f_bavail, _, _, _, _, _) = os.statvfs(path)
|
/external/valgrind/include/vki/ |
H A D | vki-solaris.h | 1161 #include <sys/statvfs.h> 1162 #define vki_statvfs statvfs
|
/external/llvm/lib/Analysis/ |
H A D | TargetLibraryInfo.cpp | 264 TLI.setUnavailable(LibFunc::statvfs);
|
/external/compiler-rt/lib/msan/tests/ |
H A D | msan_test.cc | 57 #include <sys/statvfs.h> 738 TEST(MemorySanitizer, statvfs) { 739 struct statvfs st; 740 int res = statvfs("/", &st); 749 struct statvfs st;
|