Searched refs:roundStorageSize (Results 1 – 4 of 4) sorted by relevance
19 import static android.os.FileUtils.roundStorageSize;483 assertEquals(M128, roundStorageSize(M128)); in testRoundStorageSize()484 assertEquals(M256, roundStorageSize(M128 + 1)); in testRoundStorageSize()485 assertEquals(M256, roundStorageSize(M256 - 1)); in testRoundStorageSize()486 assertEquals(M256, roundStorageSize(M256)); in testRoundStorageSize()487 assertEquals(M512, roundStorageSize(M256 + 1)); in testRoundStorageSize()488 assertEquals(M512, roundStorageSize(M512 - 1)); in testRoundStorageSize()489 assertEquals(M512, roundStorageSize(M512)); in testRoundStorageSize()490 assertEquals(G1, roundStorageSize(M512 + 1)); in testRoundStorageSize()491 assertEquals(G1, roundStorageSize(G1)); in testRoundStorageSize()[all …]
221 return FileUtils.roundStorageSize(mStorage.getPrimaryStorageSize()); in getTotalBytes()228 return FileUtils.roundStorageSize(vol.disk.size); in getTotalBytes()
1330 FileUtils.roundStorageSize(Environment.getDataDirectory().getTotalSpace() in getPrimaryStoragePathAndSize()1336 return FileUtils.roundStorageSize(Environment.getDataDirectory().getTotalSpace() in getPrimaryStorageSize()
1266 public static long roundStorageSize(long size) { in roundStorageSize() method in FileUtils