/external/openssh/openbsd-compat/ |
bsd-statvfs.c | 1 /* $Id: bsd-statvfs.c,v 1.1 2008/06/08 17:32:29 dtucker Exp $ */ 24 int statvfs(const char *path, struct statvfs *buf) function 32 int fstatvfs(int fd, struct statvfs *buf)
|
bsd-statvfs.h | 1 /* $Id: bsd-statvfs.h,v 1.1 2008/06/08 17:32:29 dtucker Exp $ */ 44 struct statvfs { struct 63 int statvfs(const char *, struct statvfs *); 67 int fstatvfs(int, struct statvfs *);
|
/bionic/libc/include/sys/ |
statvfs.h | 26 struct statvfs { struct 50 extern int statvfs(const char* __restrict, struct statvfs* __restrict) __nonnull((1, 2)); 51 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/ |
statvfs.h | 26 #include <bits/statvfs.h> 52 extern int statvfs (__const char *__restrict __file, 53 struct statvfs *__restrict __buf) 57 extern int __REDIRECT_NTH (statvfs, 59 struct statvfs *__restrict __buf), statvfs64) 62 # define statvfs statvfs64 74 extern int fstatvfs (int __fildes, struct statvfs *__buf) 78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf), 91 #endif /* sys/statvfs.h */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
statvfs.h | 26 #include <bits/statvfs.h> 52 extern int statvfs (__const char *__restrict __file, 53 struct statvfs *__restrict __buf) 57 extern int __REDIRECT_NTH (statvfs, 59 struct statvfs *__restrict __buf), statvfs64) 62 # define statvfs statvfs64 74 extern int fstatvfs (int __fildes, struct statvfs *__buf) 78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf), 91 #endif /* sys/statvfs.h */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/ |
statvfs.h | 26 #include <bits/statvfs.h> 52 extern int statvfs (__const char *__restrict __file, 53 struct statvfs *__restrict __buf) 57 extern int __REDIRECT_NTH (statvfs, 59 struct statvfs *__restrict __buf), statvfs64) 62 # define statvfs statvfs64 74 extern int fstatvfs (int __fildes, struct statvfs *__buf) 78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf), 91 #endif /* sys/statvfs.h */
|
/bionic/tests/ |
statvfs_test.cpp | 19 #include <sys/statvfs.h> 25 TEST(statvfs, statvfs) { 26 struct statvfs sb; 29 ASSERT_EQ(0, statvfs("/", &sb)); 38 ASSERT_EQ(0, statvfs("/data/local/tmp", &sb)); 47 TEST(statvfs, fstatvfs) { 48 struct statvfs sb;
|
/bionic/libc/bionic/ |
statvfs.cpp | 17 #include <sys/statvfs.h> 30 static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) { 44 int statvfs(const char* path, struct statvfs* result) { function 54 int fstatvfs(int fd, struct statvfs* result) {
|
/external/chromium_org/base/ |
sys_info_posix.cc | 23 #define statvfs statfs // Android uses a statvfs-like statfs struct and call. macro 25 #include <sys/statvfs.h> 62 struct statvfs stats; 63 if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0)
|
/external/chromium/base/ |
sys_info_posix.cc | 11 #include <sys/statvfs.h> 47 struct statvfs stats; 48 if (statvfs(path.value().c_str(), &stats) != 0) {
|
/frameworks/base/core/java/android/os/ |
StatFs.java | 25 * wrapper for Unix statvfs(). 44 return Libcore.os.statvfs(path); 69 * the Unix {@code statvfs.f_bsize} field. 85 * Unix {@code statvfs.f_blocks} field. 102 * corresponds to the Unix {@code statvfs.f_bfree} field. Most applications 128 * applications. This corresponds to the Unix {@code statvfs.f_bavail} field.
|
/libcore/luni/src/main/native/ |
Portability.h | 75 #include <sys/statvfs.h>
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/ |
statvfs.h | 20 # error "Never include <bits/statvfs.h> directly; use <sys/statvfs.h> instead." 29 struct statvfs struct
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
statvfs.h | 20 # error "Never include <bits/statvfs.h> directly; use <sys/statvfs.h> instead." 29 struct statvfs struct
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/ |
statvfs.h | 20 # error "Never include <bits/statvfs.h> directly; use <sys/statvfs.h> instead." 29 struct statvfs struct
|
/external/chromium/third_party/libjingle/source/talk/base/ |
unixfilesystem.cc | 38 #include <sys/statvfs.h> 47 #include <sys/statvfs.h> 492 struct statvfs vfs; 494 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
fuse.h | 214 int (*statfs)(const char*, struct statvfs*);
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
unixfilesystem.cc | 39 #include <sys/statvfs.h> 48 #include <sys/statvfs.h> 506 struct statvfs vfs; 508 if (0 != statvfs(existing_path.pathname().c_str(), &vfs))
|
/external/qemu/ |
osdep.c | 41 #include <sys/statvfs.h>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sundry.py | 74 import statvfs namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sundry.py | 74 import statvfs namespace
|
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/ |
private_api_file_system.cc | 7 #include <sys/statvfs.h> 89 struct statvfs stat = {}; // Zero-clear 90 if (HANDLE_EINTR(statvfs(mount_path.c_str(), &stat)) == 0) { 101 struct statvfs stat = {}; 102 if (HANDLE_EINTR(statvfs(path.c_str(), &stat)) != 0) { 103 // The filesystem seems not supporting statvfs(). Assume it to be a commonly 105 LOG(ERROR) << "Cannot statvfs() the name length limit for: " << path;
|
/libcore/luni/src/main/java/java/io/ |
File.java | [all...] |
/external/openssh/ |
Android.mk | 26 openbsd-compat/bsd-statvfs.c openbsd-compat/xmmap.c \
|
sftp-server.c | 30 #include <sys/statvfs.h> 491 send_statvfs(u_int32_t id, struct statvfs *st) 532 /* statvfs extension */ 533 buffer_put_cstring(&msg, "statvfs@openssh.com"); 1196 struct statvfs st; 1202 if (statvfs(path, &st) != 0) 1213 struct statvfs st; 1259 else if (strcmp(request, "statvfs@openssh.com") == 0) [all...] |