Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/storage/
DAppsStorageStatsManagerTest.java83 StorageStatsSource.AppStorageStats storageStats = in callback_onLoadFinished_listenerOnDataLoadedCalled() local
86 mCallbacksArgumentCaptor.getValue().onLoadFinished(null, storageStats); in callback_onLoadFinished_listenerOnDataLoadedCalled()
88 verify(mCallback1).onDataLoaded(storageStats, false, false); in callback_onLoadFinished_listenerOnDataLoadedCalled()
89 verify(mCallback2).onDataLoaded(storageStats, false, false); in callback_onLoadFinished_listenerOnDataLoadedCalled()
98 StorageStatsSource.AppStorageStats storageStats = in callback_unregisterListener_onlyOneListenerOnDataLoadedCalled() local
101 mCallbacksArgumentCaptor.getValue().onLoadFinished(null, storageStats); in callback_unregisterListener_onlyOneListenerOnDataLoadedCalled()
103 verify(mCallback1).onDataLoaded(storageStats, false, false); in callback_unregisterListener_onlyOneListenerOnDataLoadedCalled()
104 verify(mCallback2, never()).onDataLoaded(storageStats, false, false); in callback_unregisterListener_onlyOneListenerOnDataLoadedCalled()
113 StorageStatsSource.AppStorageStats storageStats = in callback_notLoaded_listenerOnDataLoadedCalled() local
116 verify(mCallback1, never()).onDataLoaded(storageStats, false, false); in callback_notLoaded_listenerOnDataLoadedCalled()
[all …]
DStorageApplicationActionButtonsPreferenceControllerTest.java194 StorageStatsSource.AppStorageStats storageStats = in handleClearCacheClick_disallowedBySystem_shouldNotDeleteApplicationCache() local
197 mPreferenceController.onDataLoaded(storageStats, false, false); in handleClearCacheClick_disallowedBySystem_shouldNotDeleteApplicationCache()
218 StorageStatsSource.AppStorageStats storageStats = in handleClearCacheClick_allowedBySystem_shouldNotDeleteApplicationCache() local
221 mPreferenceController.onDataLoaded(storageStats, false, false); in handleClearCacheClick_allowedBySystem_shouldNotDeleteApplicationCache()
240 StorageStatsSource.AppStorageStats storageStats = in handleClearDataClick_disallowedBySystem_shouldNotShowDialogToClear() local
243 mPreferenceController.onDataLoaded(storageStats, false, false); in handleClearDataClick_disallowedBySystem_shouldNotShowDialogToClear()
262 StorageStatsSource.AppStorageStats storageStats = in handleClearDataClick_allowedBySystem_shouldShowDialogToClear() local
265 mPreferenceController.onDataLoaded(storageStats, false, false); in handleClearDataClick_allowedBySystem_shouldShowDialogToClear()
291 StorageStatsSource.AppStorageStats storageStats = in handleClearDataClick_hasValidManageSpaceActivity_shouldNotShowDialogToClear() local
294 mPreferenceController.onDataLoaded(storageStats, false, false); in handleClearDataClick_hasValidManageSpaceActivity_shouldNotShowDialogToClear()
[all …]
DStorageSizeBasePreferenceControllerTest.java122 StorageStatsSource.AppStorageStats storageStats = in onDataLoaded_appStorageStatsSet_shouldUpdateDetailText() local
124 mPreferenceController.setAppStorageStats(storageStats); in onDataLoaded_appStorageStatsSet_shouldUpdateDetailText()
DStorageAsyncLoaderTest.java265 StorageStatsSource.AppStorageStats storageStats = in createAppInfo() local
269 .thenReturn(storageStats); in createAppInfo()
/packages/apps/Settings/tests/unit/src/com/android/settings/deviceinfo/storage/
DStorageAsyncLoaderTest.java215 StorageStatsSource.AppStorageStats storageStats = in addPackage() local
217 when(storageStats.getCodeBytes()).thenReturn(codeSize); in addPackage()
218 when(storageStats.getDataBytes()).thenReturn(dataSize + cacheSize); in addPackage()
219 when(storageStats.getCacheBytes()).thenReturn(cacheSize); in addPackage()
221 .thenReturn(storageStats); in addPackage()
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/download/
DMddLogger.java94 MobileDataDownloadStorageStats.Builder storageStats = in logStorageStats() local
97 storageStats.addMobileDataDownloadFileGroupStorageStats( in logStorageStats()
111 storageStats.build().toByteArray(), in logStorageStats()