Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java99 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(1111L); in testLoadingApps()
110 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(0); in testGamesAreFiltered()
123 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(0); in testLegacyGamesAreFiltered()
133 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(111L); in testCacheIsNotIgnored()
162 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(111L); in testUpdatedSystemAppCodeSizeIsCounted()
173 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(0); in testVideoAppsAreFiltered()
221 assertThat(result.get(PRIMARY_USER_ID).otherAppsSize).isEqualTo(DEFAULT_QUOTA + 11); in testCacheOveragesAreCountedAsFree()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/deviceinfo/storage/
DCachedStorageValuesHelper.java89 final long otherAppsSize = mSharedPreferences.getLong(OTHER_APPS_SIZE_KEY, -1); in getCachedAppsStorageResult() local
95 || otherAppsSize < 0 in getCachedAppsStorageResult()
126 result.otherAppsSize = otherAppsSize; in getCachedAppsStorageResult()
144 .putLong(OTHER_APPS_SIZE_KEY, result.otherAppsSize) in cacheResult()
DStorageAsyncLoader.java147 result.otherAppsSize += blamedSize; in getStorageResultForUser()
172 public long otherAppsSize; field in StorageAsyncLoader.AppsStorageResult
DStorageItemPreferenceController.java262 mAppPreference.setStorageSize(data.otherAppsSize, mTotalSize); in onLoadFinished()
283 + otherData.otherAppsSize; in onLoadFinished()
DUserProfileController.java104 + result.otherAppsSize in handleResult()
/packages/apps/Car/Settings/src/com/android/car/settings/storage/
DStorageAsyncLoader.java84 long otherAppsSize = 0; in getStorageResultForUser() local
135 otherAppsSize += blamedSize; in getStorageResultForUser()
141 videoAppsSize, otherAppsSize); in getStorageResultForUser()
167 long videoAppsSize, long otherAppsSize) { in AppsStorageResult() argument
172 mOtherAppsSize = otherAppsSize; in AppsStorageResult()
/packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
DCachedStorageValuesHelper.java89 final long otherAppsSize = mSharedPreferences.getLong(OTHER_APPS_SIZE_KEY, -1); in getCachedAppsStorageResult() local
95 || otherAppsSize < 0 in getCachedAppsStorageResult()
126 result.otherAppsSize = otherAppsSize; in getCachedAppsStorageResult()
144 .putLong(OTHER_APPS_SIZE_KEY, result.otherAppsSize) in cacheResult()
DStorageItemPreferenceController.java278 + otherData.otherAppsSize; in onLoadFinished()
388 return data.otherAppsSize + profileData.otherAppsSize; in getAppsSize()
390 return data.otherAppsSize; in getAppsSize()
DStorageAsyncLoader.java147 result.otherAppsSize += blamedSize; in getStorageResultForUser()
172 public long otherAppsSize; field in StorageAsyncLoader.AppsStorageResult
DUserProfileController.java103 + result.otherAppsSize in handleResult()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/
DStorageProfileFragmentTest.java49 result.otherAppsSize = 200; in verifyAppSizesAreNotZeroedOut()
65 assertThat(extractedResult.otherAppsSize).isEqualTo(200); in verifyAppSizesAreNotZeroedOut()
/packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
DCachedStorageValuesHelperTest.java136 assertThat(primaryResult.otherAppsSize).isEqualTo(10000L); in getCachedAppsStorageResult_cachedValuesAreLoaded()
275 result.otherAppsSize = 10000L; in cacheResult_succeeds()
DStorageItemPreferenceControllerTest.java312 result.otherAppsSize = MEGABYTE_IN_BYTES * 90; in testMeasurementCompletedUpdatesPreferences()