Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageSummaryPreference.java41 public void setPercent(long usedBytes, long totalBytes) { in setPercent() argument
42 mPercent = MathUtils.constrain((int) ((usedBytes * 100) / totalBytes), in setPercent()
43 (usedBytes > 0) ? 1 : 0, 100); in setPercent()
DPublicVolumeSettings.java163 final long usedBytes = totalBytes - freeBytes; in update() local
165 final Formatter.BytesResult result = Formatter.formatBytes(getResources(), usedBytes, in update()
171 mSummary.setPercent(usedBytes, 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()