Home
last modified time | relevance | path

Searched refs:statvfs (Results 1 – 11 of 11) sorted by relevance

/libcore/ojluni/src/main/java/sun/nio/fs/
DUnixFileStoreAttributes.java39 UnixNativeDispatcher.statvfs(path, attrs); in get()
DUnixNativeDispatcher.java503 static void statvfs(UnixPath path, UnixFileStoreAttributes attrs) in statvfs() method in UnixNativeDispatcher
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java328 @Override public StructStatVfs statvfs(String path) throws ErrnoException { in statvfs() method in BlockGuardOs
330 return os.statvfs(path); in statvfs()
DForwardingOs.java180 public StructStatVfs statvfs(String path) throws ErrnoException { return os.statvfs(path); } in statvfs() method in ForwardingOs
DOs.java167 public StructStatVfs statvfs(String path) throws ErrnoException; in statvfs() method
DLinux.java254 public native StructStatVfs statvfs(String path) throws ErrnoException; in statvfs() method in Linux
/libcore/luni/src/test/java/libcore/java/io/
DFileInputStreamTest.java254 final StructStatVfs statVfs = Os.statvfs(largeFile.getPath()); in testSkipOnLargeFiles()
/libcore/luni/src/main/java/android/system/
DOs.java554 …public static StructStatVfs statvfs(String path) throws ErrnoException { return Libcore.os.statvfs in statvfs() method in Os
/libcore/ojluni/src/main/native/
DUnixFileSystem_md.c51 #define statvfs64 statvfs
DUnixNativeDispatcher.c53 #define statvfs64 statvfs
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp439 static jobject makeStructStatVfs(JNIEnv* env, const struct statvfs& sb) { in makeStructStatVfs()
1156 struct statvfs sb; in Linux_fstatvfs()
2267 struct statvfs sb; in Linux_statvfs()
2268 int rc = TEMP_FAILURE_RETRY(statvfs(path.c_str(), &sb)); in Linux_statvfs()
2491 NATIVE_METHOD(Linux, statvfs, "(Ljava/lang/String;)Landroid/system/StructStatVfs;"),