package android.os;
public class StatFs
{
public StatFs(java.lang.String path) { throw new RuntimeException("Stub!"); }
public void restat(java.lang.String path) { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public int getBlockSize() { throw new RuntimeException("Stub!"); }
public long getBlockSizeLong() { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public int getBlockCount() { throw new RuntimeException("Stub!"); }
public long getBlockCountLong() { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public int getFreeBlocks() { throw new RuntimeException("Stub!"); }
public long getFreeBlocksLong() { throw new RuntimeException("Stub!"); }
public long getFreeBytes() { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public int getAvailableBlocks() { throw new RuntimeException("Stub!"); }
public long getAvailableBlocksLong() { throw new RuntimeException("Stub!"); }
public long getAvailableBytes() { throw new RuntimeException("Stub!"); }
public long getTotalBytes() { throw new RuntimeException("Stub!"); }
}
|