Home
last modified time | relevance | path

Searched refs:getUserPackageSettings (Results 1 – 5 of 5) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DWatchdogStorageUnitTest.java157 assertWithMessage("User package settings").that(mService.getUserPackageSettings()) in testSaveUserPackageSettings()
187 .that(mService.getUserPackageSettings()).containsExactlyElementsIn(expected); in testOverwriteUserPackageSettings()
288 assertWithMessage("User packages settings").that(mService.getUserPackageSettings()) in testOverwriteIoOveruseStats()
335 .that(mService.getUserPackageSettings()).isNotNull(); in testGetHistoricalIoOveruseStats()
379 .that(mService.getUserPackageSettings()).isNotNull(); in testGetHistoricalIoOveruseStatsWithNoRecentStats()
619 .that(mService.getUserPackageSettings()).containsExactlyElementsIn(settingsEntries); in testDeleteUserPackage()
644 assertWithMessage("User package settings").that(mService.getUserPackageSettings()) in testDeleteUserPackageWithNonexistentPackage()
675 .that(mService.getUserPackageSettings()).containsExactlyElementsIn(settingsEntries); in testDeleteUserPackageWithHistoricalIoOveruseStats()
701 .that(mService.getUserPackageSettings()).containsExactlyElementsIn(settingsEntries); in testSyncUsers()
723 .that(mService.getUserPackageSettings()).containsExactlyElementsIn(settingsEntries); in testSyncUsersWithHistoricalIoOveruseStats()
[all …]
DCarWatchdogServiceUnitTest.java1133 }).when(mSpiedWatchdogStorage).getUserPackageSettings(); in mockWatchdogStorage()
DWatchdogPerfHandlerUnitTest.java4686 }).when(mSpiedWatchdogStorage).getUserPackageSettings(); in mockWatchdogStorage()
4954 verify(mSpiedWatchdogStorage, times(wantedInvocations)).getUserPackageSettings(); in verifyDatabaseInit()
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogStorage.java233 public List<UserPackageSettingsEntry> getUserPackageSettings() { in getUserPackageSettings() method in WatchdogStorage
DWatchdogPerfHandler.java1308 mWatchdogStorage.getUserPackageSettings(); in readFromDatabase()