Home
last modified time | relevance | path

Searched refs:resetResourceOveruseStats (Results 1 – 12 of 12) sorted by relevance

/aosp12/packages/services/Car/cpp/watchdog/server/tests/
H A DWatchdogServiceHelperTest.cpp431 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(packageNames)) in TEST_F()
434 Status status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in TEST_F()
441 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)).Times(0); in TEST_F()
443 Status status = mWatchdogServiceHelper->resetResourceOveruseStats({}); in TEST_F()
453 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)) in TEST_F()
456 Status status = mWatchdogServiceHelper->resetResourceOveruseStats({}); in TEST_F()
H A DMockCarWatchdogServiceForSystem.h54 MOCK_METHOD(android::binder::Status, resetResourceOveruseStats,
H A DMockWatchdogServiceHelper.h62 MOCK_METHOD(android::binder::Status, resetResourceOveruseStats,
H A DIoOveruseMonitorTest.cpp1009 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F()
1025 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F()
/aosp12/packages/services/Car/cpp/watchdog/server/src/
H A DWatchdogServiceHelper.h71 virtual android::binder::Status resetResourceOveruseStats(
115 android::binder::Status resetResourceOveruseStats(const std::vector<std::string>& packageNames);
H A DWatchdogServiceHelper.cpp207 Status WatchdogServiceHelper::resetResourceOveruseStats( in resetResourceOveruseStats() function in android::automotive::watchdog::WatchdogServiceHelper
215 return service->resetResourceOveruseStats(packageNames); in resetResourceOveruseStats()
H A DIoOveruseMonitor.cpp596 if (const auto status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in resetIoOveruseStats()
/aosp12/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
H A DICarWatchdogServiceForSystem.aidl72 oneway void resetResourceOveruseStats(in @utf8InCpp List<String> packageNames); in resetResourceOveruseStats() method
/aosp12/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
H A DCarWatchdogDaemonHelperTest.java266 public void resetResourceOveruseStats(List<String> packageNames) {} in resetResourceOveruseStats() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
/aosp12/packages/services/Car/service/src/com/android/car/watchdog/
H A DCarWatchdogService.java752 public void resetResourceOveruseStats(List<String> packageNames) { in resetResourceOveruseStats() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
762 service.mWatchdogPerfHandler.resetResourceOveruseStats(new ArraySet<>(packageNames)); in resetResourceOveruseStats()
H A DWatchdogPerfHandler.java834 public void resetResourceOveruseStats(Set<String> genericPackageNames) { in resetResourceOveruseStats() method in WatchdogPerfHandler
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
H A DCarWatchdogServiceUnitTest.java2979 mWatchdogServiceForSystemImpl.resetResourceOveruseStats( in testResetResourceOveruseStatsResetsStats()
3021 mWatchdogServiceForSystemImpl.resetResourceOveruseStats( in testResetResourceOveruseStatsEnablesPackage()
3058 mWatchdogServiceForSystemImpl.resetResourceOveruseStats( in testResetResourceOveruseStatsResetsUserPackageSettings()