Searched refs:privateUsedBytes (Results 1 – 7 of 7) sorted by relevance
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/ |
D | TopLevelStoragePreferenceController.java | 52 double privateUsedBytes = info.totalBytes - info.freeBytes; in getSummary() local 54 percentageFormat.format(privateUsedBytes / info.totalBytes), in getSummary()
|
D | StorageDashboardFragment.java | 143 long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes() local 144 mSummaryController.updateBytes(privateUsedBytes, mStorageInfo.totalBytes); in onReceivedSizes() 146 mPreferenceController.setUsedSize(privateUsedBytes); in onReceivedSizes()
|
D | StorageSettings.java | 156 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/ |
D | TopLevelStoragePreferenceController.java | 59 final double privateUsedBytes = info.totalBytes - info.freeBytes; in refreshSummary() local 63 percentageFormat.format(privateUsedBytes / info.totalBytes), in refreshSummary()
|
D | StorageDashboardFragment.java | 143 long privateUsedBytes = mStorageInfo.totalBytes - mStorageInfo.freeBytes; in onReceivedSizes() local 144 mSummaryController.updateBytes(privateUsedBytes, mStorageInfo.totalBytes); in onReceivedSizes() 146 mPreferenceController.setUsedSize(privateUsedBytes); in onReceivedSizes()
|
D | StorageSettings.java | 156 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/ |
D | StorageSettingsManager.java | 98 long privateUsedBytes = mPrivateStorageInfo.totalBytes - mPrivateStorageInfo.freeBytes; in onReceivedSizes() local 100 listener.onDataLoaded(mAppsStorageResultSparseArray, privateUsedBytes, in onReceivedSizes()
|