Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/storage/
DStorageApplicationActionButtonsPreferenceControllerTest.java193 stats.cacheBytes = 0; in handleClearCacheClick_disallowedBySystem_shouldNotDeleteApplicationCache()
217 stats.cacheBytes = 0; in handleClearCacheClick_allowedBySystem_shouldNotDeleteApplicationCache()
239 stats.cacheBytes = 10; in handleClearDataClick_disallowedBySystem_shouldNotShowDialogToClear()
261 stats.cacheBytes = 10; in handleClearDataClick_allowedBySystem_shouldShowDialogToClear()
290 stats.cacheBytes = 10; in handleClearDataClick_hasValidManageSpaceActivity_shouldNotShowDialogToClear()
319 stats.cacheBytes = 10; in handleClearDataClick_hasInvalidManageSpaceActivity_shouldShowDialogToClear()
351 stats.cacheBytes = 10; in onDataLoaded_resultLoaded_cacheButtonsShouldBeEnabled()
369 stats.cacheBytes = 10; in onDataLoaded_resultLoaded_dataButtonsShouldBeEnabled()
387 stats.cacheBytes = 0; in updateUiWithSize_resultLoaded_cacheButtonDisabledAndDataButtonsEnabled()
406 stats.cacheBytes = 10; in onDataLoaded_resultLoaded_cacheButtonEnabledAndDataButtonDisabled()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DStorageAsyncLoader.java99 long cacheBytes = stats.getCacheBytes(); in getStorageResultForUser() local
105 if (cacheQuota < cacheBytes) { in getStorageResultForUser()
106 blamedSize = blamedSize - cacheBytes + cacheQuota; in getStorageResultForUser()
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoader.java160 final long cacheBytes = stats.getCacheBytes(); in getAppsAndGamesSize() local
166 if (cacheQuota < cacheBytes) { in getAppsAndGamesSize()
167 blamedSize = blamedSize - cacheBytes + cacheQuota; in getAppsAndGamesSize()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/storage/
DStorageAsyncLoaderTest.java238 stats.cacheBytes = cacheSize; in addPackage()