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

1 2 3 4 5 6

  /bionic/libc/unistd/
statfs.c 30 extern int __statfs64(const char *, size_t, struct statfs *);
32 int statfs(const char* path, struct statfs* stat) function
34 return __statfs64(path, sizeof(struct statfs), stat);
fstatfs.c 30 extern int __fstatfs64(int, size_t, struct statfs *);
32 int fstatfs(int fd, struct statfs* stat)
34 return __fstatfs64(fd, sizeof(struct statfs), stat);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
vfs.h 1 /* Other systems declare `struct statfs' et al in <sys/vfs.h>,
4 #include <sys/statfs.h>
statfs.h 25 /* Get the system-specific definition of `struct statfs'. */
26 #include <bits/statfs.h>
32 extern int statfs (__const char *__file, struct statfs *__buf)
36 extern int __REDIRECT_NTH (statfs,
37 (__const char *__file, struct statfs *__buf),
40 # define statfs statfs64
51 extern int fstatfs (int __fildes, struct statfs *__buf)
55 extern int __REDIRECT_NTH (fstatfs, (int __fildes, struct statfs *__buf),
68 #endif /* sys/statfs.h *
    [all...]
  /bionic/libc/kernel/arch-sh/asm/
statfs.h 15 #include <asm-generic/statfs.h>
  /bionic/libc/kernel/common/linux/
vfs.h 15 #include <linux/statfs.h>
statfs.h 17 #include <asm/statfs.h>
  /development/ndk/platforms/android-3/include/linux/
vfs.h 15 #include <linux/statfs.h>
statfs.h 17 #include <asm/statfs.h>
  /external/kernel-headers/original/linux/
vfs.h 4 #include <linux/statfs.h>
statfs.h 6 #include <asm/statfs.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
vfs.h 15 #include <linux/statfs.h>
  /frameworks/base/core/jni/
android_os_StatFs.cpp 20 #include <sys/statfs.h>
45 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
52 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
59 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
66 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context);
79 struct statfs *stat = (struct statfs *)env->GetIntField(thiz, fields.context)
    [all...]
  /frameworks/base/media/mtp/
MtpStorage.cpp 25 #include <sys/statfs.h>
66 struct statfs stat;
67 if (statfs(getPath(), &stat))
75 struct statfs stat;
76 if (statfs(getPath(), &stat))
  /external/chromium/base/
file_util_linux.cc 15 struct statfs statfs_buf;
16 if (statfs(path.value().c_str(), &statfs_buf) < 0) {
25 // are copied from the statfs man page.
  /bionic/libc/include/sys/
vfs.h 38 struct statfs { struct
97 extern int statfs(const char *, struct statfs *);
98 extern int fstatfs(int, struct statfs *);
  /development/ndk/platforms/android-3/include/sys/
vfs.h 38 struct statfs { struct
97 extern int statfs(const char *, struct statfs *);
98 extern int fstatfs(int, struct statfs *);

Completed in 832 milliseconds

1 2 3 4 5 6