Home
last modified time | relevance | path

Searched refs:totalSpace (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DStorageSummaryDonutPreferenceControllerTest.java84 final long totalSpace = 32 * GIGABYTE; in testEmpty() local
94 .isEqualTo("Used of " + Formatter.formatShortFileSize(mContext, totalSpace)); in testEmpty()
99 final long totalSpace = KILOBYTE * 10; in testTotalStorage() local
101 mController.updateBytes(KILOBYTE, totalSpace); in testTotalStorage()
109 .isEqualTo("Used of " + Formatter.formatShortFileSize(mContext, totalSpace)); in testTotalStorage()
114 final long totalSpace = KILOBYTE * 10; in testPopulateWithVolume() local
116 final long usedSpace = totalSpace - freeSpace; in testPopulateWithVolume()
121 when(file.getTotalSpace()).thenReturn(totalSpace); in testPopulateWithVolume()
123 when(svp.getPrimaryStorageSize()).thenReturn(totalSpace); in testPopulateWithVolume()
133 .isEqualTo("Used of " + Formatter.formatShortFileSize(mContext, totalSpace)); in testPopulateWithVolume()
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
DAttachmentUtils.java177 final long totalSpace = cacheDir.getTotalSpace(); in cacheAttachmentUri() local
180 if (isLowSpace(totalSpace, usableSpace)) { in cacheAttachmentUri()
182 usableSpace, totalSpace, attachment); in cacheAttachmentUri()
236 if (isLowSpace(totalSpace, usableSpace)) { in cacheAttachmentUri()
239 usableSpace, totalSpace, attachment); in cacheAttachmentUri()
267 private static boolean isLowSpace(long totalSpace, long usableSpace) { in isLowSpace() argument
272 Math.min(totalSpace * MIN_CACHE_THRESHOLD, MIN_CACHE_AVAILABLE_SPACE_BYTES); in isLowSpace()