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

  /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/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 21 #define statvfs statfs // Android uses a statvfs-like statfs struct and call. macro
23 #include <sys/statvfs.h>
46 struct statvfs stats;
47 if (HANDLE_EINTR(statvfs(path.value().c_str(), &stats)) != 0)
  /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/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
  /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
  /libcore/luni/src/main/java/libcore/io/
Os.java 125 public StructStatVfs statvfs(String path) throws ErrnoException; method in interface:Os
Posix.java 176 public native StructStatVfs statvfs(String path) throws ErrnoException; method in class:Posix
ForwardingOs.java 132 public StructStatVfs statvfs(String path) throws ErrnoException { return os.statvfs(path); } method in class:ForwardingOs
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 282 /// int fstatvfs(int fildes, struct statvfs *buf);
512 /// int statvfs(const char *path, struct statvfs *buf);
513 statvfs, enumerator in enum:llvm::LibFunc::Func

Completed in 320 milliseconds