Home
last modified time | relevance | path

Searched refs:allAppsExceptGamesSize (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java109 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(1111L); in testLoadingApps()
120 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(0); in testGamesAreFiltered()
133 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(0); in testLegacyGamesAreFiltered()
143 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(111L); in testCacheIsNotIgnored()
172 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(111L); in testUpdatedSystemAppCodeSizeIsCounted()
197 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize) in testCacheOveragesAreCountedAsFree()
210 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(33L); in testAppsAreFiltered()
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DStorageCacheHelper.java66 .putLong(APPS_SIZE_KEY, data.allAppsExceptGamesSize) in cacheSizeInfo()
111 result.allAppsExceptGamesSize = mSharedPreferences.getLong(APPS_SIZE_KEY, 0); in retrieveCachedSize()
128 public long allAppsExceptGamesSize; field in StorageCacheHelper.StorageCache
DStorageAsyncLoader.java210 result.allAppsExceptGamesSize += blamedSize; in getAppsAndGamesSize()
218 result.allAppsExceptGamesSize += blamedSize; in getAppsAndGamesSize()
242 public long allAppsExceptGamesSize; field in StorageAsyncLoader.StorageResult
DStorageItemPreferenceController.java454 mAppsPreference.setStorageSize(storageCache.allAppsExceptGamesSize, mTotalSize, animate); in onLoadFinished()
491 storageCache.allAppsExceptGamesSize = data.allAppsExceptGamesSize; in getSizeInfo()
510 + otherData.allAppsExceptGamesSize; in getSizeInfo()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DStorageCacheHelperTest.java108 result.allAppsExceptGamesSize = FAKE_APPS_SIZE; in getFakeStorageCache()
DStorageItemPreferenceControllerTest.java387 result.allAppsExceptGamesSize = MEGABYTE_IN_BYTES * 90; in testMeasurementCompletedUpdatesPreferences()