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

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowStatFs.java 40 return stat.availableBlocks;
51 public static void registerStats(File path, int blockCount, int freeBlocks, int availableBlocks) {
52 registerStats(path.getAbsolutePath(), blockCount, freeBlocks, availableBlocks);
55 public static void registerStats(String path, int blockCount, int freeBlocks, int availableBlocks) {
56 stats.put(path, new Stats(blockCount, freeBlocks, availableBlocks));
64 Stats(int blockCount, int freeBlocks, int availableBlocks) {
67 this.availableBlocks = availableBlocks;
69 int blockCount, freeBlocks, availableBlocks;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowStatFs.java 66 return stat.availableBlocks;
93 return stat.availableBlocks;
102 * @param availableBlocks number of available blocks
104 public static void registerStats(File path, int blockCount, int freeBlocks, int availableBlocks) {
105 registerStats(path.getAbsolutePath(), blockCount, freeBlocks, availableBlocks);
114 * @param availableBlocks number of available blocks
116 public static void registerStats(String path, int blockCount, int freeBlocks, int availableBlocks) {
117 stats.put(path, new Stats(blockCount, freeBlocks, availableBlocks));
126 Stats(int blockCount, int freeBlocks, int availableBlocks) {
129 this.availableBlocks = availableBlocks
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileStoreAttributes.java 55 long availableBlocks() {
UnixFileStore.java 125 return attrs.blockSize() * attrs.availableBlocks();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
CacheStorageUsageInfo.java 65 long availableBlocks = stat.getAvailableBlocks();
69 mUsedBytes = blockSize * (totalBlocks - availableBlocks);
  /frameworks/base/core/tests/coretests/src/android/app/
DownloadManagerStressTest.java 159 int availableBlocks = fs.getAvailableBlocks();
160 int availableBytes = blockSize * availableBlocks;
172 int remainderSizeBlocks = availableBlocks - writeSizeBlocks;
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 123 long availableBlocks = stat.getAvailableBlocks();
125 freeSizeTextView.setText(Long.toString((availableBlocks * mBlockSize) / BYTE_SIZE));
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
shadows-core-v16-3.1.1.jar 
shadows-core-v17-3.1.1.jar 
shadows-core-v18-3.1.1.jar 
shadows-core-v19-3.1.1.jar 
shadows-core-v21-3.1.1.jar 
shadows-core-v22-3.1.1.jar 
shadows-core-v23-3.1.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
framework-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-framework-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-framework-3.6.1.jar 

Completed in 267 milliseconds