Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
H A DStorageAsyncLoaderTest.java108 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(1111L); in testLoadingApps()
119 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(0); in testGamesAreFiltered()
132 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(0); in testLegacyGamesAreFiltered()
142 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(111L); in testCacheIsNotIgnored()
171 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(111L); in testUpdatedSystemAppCodeSizeIsCounted()
195 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize) in testCacheOveragesAreCountedAsFree()
208 assertThat(result.get(PRIMARY_USER_ID).allAppsExceptGamesSize).isEqualTo(33L); in testAppsAreFiltered()
/aosp12/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
H A DStorageAsyncLoader.java185 result.allAppsExceptGamesSize += blamedSize; in getAppsAndGamesSize()
193 result.allAppsExceptGamesSize += blamedSize; in getAppsAndGamesSize()
217 public long allAppsExceptGamesSize; field in StorageAsyncLoader.StorageResult
H A DStorageItemPreferenceController.java370 mAppsPreference.setStorageSize(data.allAppsExceptGamesSize, mTotalSize); in onLoadFinished()
388 + otherData.allAppsExceptGamesSize; in onLoadFinished()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
H A DStorageItemPreferenceControllerTest.java341 result.allAppsExceptGamesSize = MEGABYTE_IN_BYTES * 90; in testMeasurementCompletedUpdatesPreferences()