HomeSort by relevance Sort by last modified time
    Searched defs:statvfs (Results 1 - 25 of 34) sorted by null

1 2

  /bionic/libc/bionic/
statvfs.cpp 17 #include <sys/statvfs.h>
37 static void __statfs_to_statvfs(const struct statfs& in, struct statvfs* out) {
71 int statvfs(const char* path, struct statvfs* result) { function
80 __strong_alias(statvfs64, statvfs);
82 int fstatvfs(int fd, struct statvfs* result) {
  /bionic/libc/include/sys/
statvfs.h 46 struct statvfs { __STATVFS64_BODY }; struct
62 int statvfs(const char* __path, struct statvfs* __buf) __INTRODUCED_IN(19);
64 int fstatvfs(int __fd, struct statvfs* __buf) __INTRODUCED_IN(19);
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileStoreAttributes.java 39 UnixNativeDispatcher.statvfs(path, attrs);
UnixNativeDispatcher.java 501 * statvfs(const char* path, struct statvfs *buf)
503 static void statvfs(UnixPath path, UnixFileStoreAttributes attrs) method in class:UnixNativeDispatcher
  /external/libchrome/base/
sys_info_posix.cc 26 #define statvfs statfs // Android uses a statvfs-like statfs struct and call. macro
28 #include <sys/statvfs.h>
104 struct statvfs stats;
105 if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/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.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
statvfs.h 20 # error "Never include <bits/statvfs.h> directly; use <sys/statvfs.h> instead."
29 struct statvfs struct
  /external/toybox/lib/
lib.h 306 struct statvfs statvfs; member in struct:mtab_list
  /external/toybox/scripts/
config2help.c 21 struct statvfs {int i;}; struct
  /external/curl/lib/
ssh-libssh.c 987 sftp_statvfs_t statvfs; local
989 statvfs = sftp_statvfs(sshc->sftp_session, sshc->quote_path1);
990 if(!statvfs && !sshc->acceptfail) {
992 failf(data, "statvfs command failed: %s",
999 else if(statvfs) {
1000 char *tmp = aprintf("statvfs:\n"
1007 statvfs->f_bsize, statvfs->f_frsize,
1008 statvfs->f_blocks, statvfs->f_bfree
    [all...]
ssh.c 1558 LIBSSH2_SFTP_STATVFS statvfs; local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 331 @Override public StructStatVfs statvfs(String path) throws ErrnoException { method in class:BlockGuardOs
333 return os.statvfs(path);
Linux.java 256 public native StructStatVfs statvfs(String path) throws ErrnoException; method in class:Linux
Os.java 169 public StructStatVfs statvfs(String path) throws ErrnoException; method in interface:Os
ForwardingOs.java 182 public StructStatVfs statvfs(String path) throws ErrnoException { return os.statvfs(path); } method in class:ForwardingOs
  /libcore/luni/src/main/java/android/system/
Os.java 568 * See <a href="http://man7.org/linux/man-pages/man2/statvfs.2.html">statvfs(2)</a>.
570 public static StructStatVfs statvfs(String path) throws ErrnoException { return Libcore.os.statvfs(path); } method in class:Os
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 23 # pragma weak statvfs macro
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 21 # pragma weak statvfs macro
    [all...]
  /external/python/cpython3/Modules/
posixmodule.c 20 # pragma weak statvfs macro
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-6.0.1_r3-robolectric-0.jar 
android-all-7.0.0_r1-robolectric-r1.jar 
android-all-7.1.0_r7-robolectric-0.jar 
android-all-7.1.0_r7-robolectric-r1.jar 
android-all-8.0.0_r4-robolectric-0.jar 
android-all-8.0.0_r4-robolectric-r1.jar 

Completed in 496 milliseconds

1 2