HomeSort by relevance Sort by last modified time
    Searched refs:fstatvfs (Results 1 - 25 of 35) sorted by null

1 2

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
statvfs.h 74 extern int fstatvfs (int __fildes, struct statvfs *__buf)
78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf),
81 # define fstatvfs fstatvfs64 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
statvfs.h 74 extern int fstatvfs (int __fildes, struct statvfs *__buf)
78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf),
81 # define fstatvfs fstatvfs64 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
statvfs.h 74 extern int fstatvfs (int __fildes, struct statvfs *__buf)
78 extern int __REDIRECT_NTH (fstatvfs, (int __fildes, struct statvfs *__buf),
81 # define fstatvfs fstatvfs64 macro
  /external/openssh/openbsd-compat/
bsd-statvfs.h 70 int fstatvfs(int, struct statvfs *);
bsd-statvfs.c 75 int fstatvfs(int fd, struct statvfs *buf) function
  /bionic/tests/
sys_statvfs_test.cpp 52 TEST(sys_statvfs, fstatvfs) {
55 ASSERT_EQ(0, fstatvfs(fd, &sb));
  /bionic/libc/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /development/ndk/platforms/android-21/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/sys/
statvfs.h 64 extern int fstatvfs(int, struct statvfs*) __nonnull((2));
  /bionic/libc/bionic/
statvfs.cpp 82 int fstatvfs(int fd, struct statvfs* result) { function
91 __strong_alias(fstatvfs64, fstatvfs);
getentropy_linux.c 495 HX(fstatvfs(0, &stvfs) == -1,
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
StorageTest.java 85 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException {
86 return stealBytes(os.fstatvfs(fd));
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 136 @Override public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { method in class:BlockGuardOs
138 return os.fstatvfs(fd);
Os.java 66 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException; method in interface:Os
ForwardingOs.java 75 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { return os.fstatvfs(fd); } method in class:ForwardingOs
Posix.java 69 public native StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException; method in class:Posix
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageUtils.java 182 final StructStatVfs stat = Os.fstatvfs(fd);
  /libcore/luni/src/main/java/android/system/
Os.java 131 * See <a href="http://man7.org/linux/man-pages/man2/fstatvfs.2.html">fstatvfs(2)</a>.
133 public static StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { return Libcore.os.fstatvfs(fd); } method in class:Os
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 225 TLI.setUnavailable(LibFunc::fstatvfs);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_posix.py 128 if hasattr(posix, 'fstatvfs'):
131 self.assertTrue(posix.fstatvfs(fp.fileno()))

Completed in 3552 milliseconds

1 2