Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageVolumePreference.java76 final long freeBytes = path.getFreeSpace(); in StorageVolumePreference() local
77 final long usedBytes = totalBytes - freeBytes; in StorageVolumePreference()
86 if (freeBytes < mStorageManager.getStorageLowBytes(path)) { in StorageVolumePreference()
DPublicVolumeSettings.java169 final long freeBytes = file.getFreeSpace(); in update() local
170 final long usedBytes = totalBytes - freeBytes; in update()
DPrivateVolumeSettings.java252 final long freeBytes = mVolume.getPath().getFreeSpace(); in update() local
253 final long usedBytes = mTotalSize - freeBytes; in update()
255 if (LOGV) Log.v(TAG, "update() freeBytes: " + freeBytes + " usedBytes: " + usedBytes); in update()
DStorageSettings.java535 double privateUsedBytes = info.totalBytes - info.freeBytes; in updateSummary()
538 Formatter.formatFileSize(mContext, info.freeBytes))); in updateSummary()
DStorageDashboardFragment.java121 long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes()
/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/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DVolumeSizesLoaderTest.java27 assertThat(storageInfo.freeBytes).isEqualTo(1000L); in getVolumeSize_getsValidSizes()
/packages/apps/StorageManager/src/com/android/storagemanager/automatic/
DAutomaticStorageManagementJobService.java114 return info.freeBytes < lowStorageThreshold; in volumeNeedsManagement()