Home
last modified time | relevance | path

Searched refs:privateUsedBytes (Results 1 – 7 of 7) sorted by relevance

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/
DTopLevelStoragePreferenceController.java52 double privateUsedBytes = info.totalBytes - info.freeBytes; in getSummary() local
54 percentageFormat.format(privateUsedBytes / info.totalBytes), in getSummary()
DStorageDashboardFragment.java143 long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes() local
144 mSummaryController.updateBytes(privateUsedBytes, mStorageInfo.totalBytes); in onReceivedSizes()
146 mPreferenceController.setUsedSize(privateUsedBytes); in onReceivedSizes()
DStorageSettings.java156 final long privateUsedBytes = info.totalBytes - info.freeBytes; in refresh() local
208 final BytesResult result = Formatter.formatBytes(getResources(), privateUsedBytes, 0); in refresh()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DTopLevelStoragePreferenceController.java59 final double privateUsedBytes = info.totalBytes - info.freeBytes; in refreshSummary() local
63 percentageFormat.format(privateUsedBytes / info.totalBytes), in refreshSummary()
DStorageDashboardFragment.java143 long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes() local
144 mSummaryController.updateBytes(privateUsedBytes, mStorageInfo.totalBytes); in onReceivedSizes()
146 mPreferenceController.setUsedSize(privateUsedBytes); in onReceivedSizes()
DStorageSettings.java156 final long privateUsedBytes = info.totalBytes - info.freeBytes; in refresh() local
208 final BytesResult result = Formatter.formatBytes(getResources(), privateUsedBytes, 0); in refresh()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DStorageSettingsManager.java98 long privateUsedBytes = mPrivateStorageInfo.totalBytes - mPrivateStorageInfo.freeBytes; in onReceivedSizes() local
100 listener.onDataLoaded(mAppsStorageResultSparseArray, privateUsedBytes, in onReceivedSizes()