Home
last modified time | relevance | path

Searched refs:freeBytes (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Settings/src/com/android/settings/homepage/contextualcards/slices/
DLowStorageSlice.java63 final double usedPercentage = (double) (info.totalBytes - info.freeBytes) / info.totalBytes; in getSlice()
67 final String freeSizeString = Formatter.formatFileSize(mContext, info.freeBytes); in getSlice()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DPublicVolumeSettings.java179 final long freeBytes = file.getFreeSpace(); in update() local
180 final long usedBytes = totalBytes - freeBytes; in update()
DTopLevelStoragePreferenceController.java79 long usedBytes = info.totalBytes - info.freeBytes; in refreshSummaryThread()
DStorageCategoryFragment.java215 final long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes()
DStorageDashboardFragment.java389 final long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes()
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DVolumeSizesLoaderTest.java46 assertThat(storageInfo.freeBytes).isEqualTo(1000L); in getVolumeSize_getsValidSizes()
/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/storage/
DVolumeSizesLoaderTest.java52 assertThat(storageInfo.freeBytes).isEqualTo(1000L); in getVolumeSize_getsValidSizes()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DManageCachePage.java371 long freeBytes = mCacheStorageInfo.getFreeBytes(); in refreshCacheStorageInfo() local
386 Formatter.formatFileSize(activity, freeBytes)); in refreshCacheStorageInfo()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DStorageSettingsManager.java97 long privateUsedBytes = mPrivateStorageInfo.totalBytes - mPrivateStorageInfo.freeBytes; in onReceivedSizes()
/packages/apps/StorageManager/src/com/android/storagemanager/automatic/
DAutomaticStorageManagementJobService.java122 return info.freeBytes < lowStorageThreshold; in volumeNeedsManagement()