Home
last modified time | relevance | path

Searched refs:usedBytes (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageVolumePreference.java73 final long usedBytes = totalBytes - freeBytes; in StorageVolumePreference() local
75 final String used = Formatter.formatFileSize(context, usedBytes); in StorageVolumePreference()
79 mUsedPercent = (int) ((usedBytes * 100) / totalBytes); in StorageVolumePreference()
DPublicVolumeSettings.java162 final long usedBytes = totalBytes - freeBytes; in update() local
164 final BytesResult result = Formatter.formatBytes(getResources(), usedBytes, 0); in update()
169 mSummary.setPercent((int) ((usedBytes * 100) / totalBytes)); in update()
DPrivateVolumeSettings.java235 final long usedBytes = totalBytes - freeBytes; in update() local
237 final BytesResult result = Formatter.formatBytes(getResources(), usedBytes, 0); in update()
242 mSummary.setPercent((int) ((usedBytes * 100) / totalBytes)); in update()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DManageCachePage.java369 long usedBytes = mCacheStorageInfo.getUsedBytes(); in refreshCacheStorageInfo() local
382 progressBar.setProgress((int) (usedBytes * PROGRESS_BAR_MAX / totalBytes)); in refreshCacheStorageInfo()