Home
last modified time | relevance | path

Searched refs:gamesSize (Results 1 – 13 of 13) sorted by relevance

/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/storage/
DCachedStorageValuesHelper.java85 final long gamesSize = mSharedPreferences.getLong(GAME_APPS_SIZE_KEY, -1); in getCachedAppsStorageResult() local
91 if (gamesSize < 0 in getCachedAppsStorageResult()
122 result.gamesSize = gamesSize; in getCachedAppsStorageResult()
140 .putLong(GAME_APPS_SIZE_KEY, result.gamesSize) in cacheResult()
DStorageAsyncLoader.java130 result.gamesSize += blamedSize; in getStorageResultForUser()
144 result.gamesSize += blamedSize; in getStorageResultForUser()
168 public long gamesSize; field in StorageAsyncLoader.AppsStorageResult
DStorageItemPreferenceController.java260 mGamePreference.setStorageSize(data.gamesSize, mTotalSize); in onLoadFinished()
279 otherData.gamesSize in onLoadFinished()
DUserProfileController.java106 + result.gamesSize, in handleResult()
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DCachedStorageValuesHelper.java85 final long gamesSize = mSharedPreferences.getLong(GAME_APPS_SIZE_KEY, -1); in getCachedAppsStorageResult() local
91 if (gamesSize < 0 in getCachedAppsStorageResult()
122 result.gamesSize = gamesSize; in getCachedAppsStorageResult()
140 .putLong(GAME_APPS_SIZE_KEY, result.gamesSize) in cacheResult()
DStorageAsyncLoader.java130 result.gamesSize += blamedSize; in getStorageResultForUser()
144 result.gamesSize += blamedSize; in getStorageResultForUser()
168 public long gamesSize; field in StorageAsyncLoader.AppsStorageResult
DStorageItemPreferenceController.java260 mGamePreference.setStorageSize(data.gamesSize, mTotalSize); in onLoadFinished()
279 otherData.gamesSize in onLoadFinished()
DUserProfileController.java106 + result.gamesSize, in handleResult()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
DStorageProfileFragmentTest.java50 result.gamesSize = 300; in verifyAppSizesAreNotZeroedOut()
66 assertThat(extractedResult.gamesSize).isEqualTo(300); in verifyAppSizesAreNotZeroedOut()
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java98 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(0L); in testLoadingApps()
109 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(11L); in testGamesAreFiltered()
122 assertThat(result.get(PRIMARY_USER_ID).gamesSize).isEqualTo(11L); in testLegacyGamesAreFiltered()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DStorageAsyncLoader.java167 AppsStorageResult(long gamesSize, long musicAppsSize, long photosAppsSize, in AppsStorageResult() argument
169 mGamesSize = gamesSize; in AppsStorageResult()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DCachedStorageValuesHelperTest.java132 assertThat(primaryResult.gamesSize).isEqualTo(1L); in getCachedAppsStorageResult_cachedValuesAreLoaded()
271 result.gamesSize = 1L; in cacheResult_succeeds()
DStorageItemPreferenceControllerTest.java308 result.gamesSize = MEGABYTE_IN_BYTES * 80; in testMeasurementCompletedUpdatesPreferences()