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

  /frameworks/base/core/java/android/os/
StatFs.java 21 import android.system.StructStatVfs;
28 private StructStatVfs mStat;
42 private static StructStatVfs doStat(String path) {
  /libcore/luni/src/main/java/android/system/
StructStatVfs.java 24 public final class StructStatVfs {
61 public StructStatVfs(long f_bsize, long f_frsize, long f_blocks, long f_bfree, long f_bavail,
Os.java 29 import android.system.StructStatVfs;
143 public static StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { return Libcore.os.fstatvfs(fd); }
473 public static StructStatVfs statvfs(String path) throws ErrnoException { return Libcore.os.statvfs(path); }
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
StorageTest.java 33 import android.system.StructStatVfs;
80 public StructStatVfs statvfs(String path) throws ErrnoException {
85 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException {
89 private StructStatVfs stealBytes(StructStatVfs s) {
92 return new StructStatVfs(s.f_bsize, s.f_frsize, s.f_blocks, s.f_bfree, f_bavail,
  /libcore/luni/src/main/java/java/io/
File.java 22 import android.system.StructStatVfs;
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageUtils.java 36 import android.system.StructStatVfs;
181 final StructStatVfs stat = Os.fstatvfs(fd);
  /libcore/luni/src/main/java/libcore/io/
BlockGuardOs.java 23 import android.system.StructStatVfs;
136 @Override public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException {
296 @Override public StructStatVfs statvfs(String path) throws ErrnoException {
Os.java 29 import android.system.StructStatVfs;
64 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException;
146 public StructStatVfs statvfs(String path) throws ErrnoException;
ForwardingOs.java 29 import android.system.StructStatVfs;
73 public StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException { return os.fstatvfs(fd); }
153 public StructStatVfs statvfs(String path) throws ErrnoException { return os.statvfs(path); }
Posix.java 29 import android.system.StructStatVfs;
67 public native StructStatVfs fstatvfs(FileDescriptor fd) throws ErrnoException;
197 public native StructStatVfs statvfs(String path) throws ErrnoException;
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 43 import android.system.StructStatVfs;
221 final StructStatVfs stat = Os.statvfs(path);
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 2808 milliseconds