Searched refs:statvfs (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/native/
H A DPortability.h74 #include <sys/statvfs.h>
H A Dlibcore_io_Posix.cpp54 #include <sys/statvfs.h>
383 static jobject makeStructStatVfs(JNIEnv* env, const struct statvfs& sb) {
816 struct statvfs sb;
1758 struct statvfs sb;
1759 int rc = TEMP_FAILURE_RETRY(statvfs(path.c_str(), &sb));
1761 throwErrnoException(env, "statvfs");
1964 NATIVE_METHOD(Posix, statvfs, "(Ljava/lang/String;)Landroid/system/StructStatVfs;"),
/libcore/luni/src/main/java/java/io/
H A DFile.java1126 StructStatVfs sb = Libcore.os.statvfs(path);
1148 StructStatVfs sb = Libcore.os.statvfs(path);
1166 StructStatVfs sb = Libcore.os.statvfs(path);
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java296 @Override public StructStatVfs statvfs(String path) throws ErrnoException { method in class:BlockGuardOs
298 return os.statvfs(path);
H A DOs.java156 public StructStatVfs statvfs(String path) throws ErrnoException; method in interface:Os
H A DForwardingOs.java163 public StructStatVfs statvfs(String path) throws ErrnoException { return os.statvfs(path); } method in class:ForwardingOs
H A DPosix.java240 public native StructStatVfs statvfs(String path) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java498 * See <a href="http://man7.org/linux/man-pages/man2/statvfs.2.html">statvfs(2)</a>.
500 public static StructStatVfs statvfs(String path) throws ErrnoException { return Libcore.os.statvfs(path); } method in class:Os

Completed in 87 milliseconds