/packages/services/Car/cpp/watchdog/server/tests/ |
D | WatchdogServiceHelperTest.cpp | 461 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(packageNames)) in TEST_F() 464 auto status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in TEST_F() 471 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)).Times(0); in TEST_F() 473 ASSERT_FALSE(mWatchdogServiceHelper->resetResourceOveruseStats({}).isOk()) in TEST_F() 481 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)) in TEST_F() 485 ASSERT_FALSE(mWatchdogServiceHelper->resetResourceOveruseStats({}).isOk()) in TEST_F()
|
D | MockCarWatchdogServiceForSystem.h | 44 MOCK_METHOD(ndk::ScopedAStatus, resetResourceOveruseStats, (const std::vector<std::string>&),
|
D | MockWatchdogServiceHelper.h | 68 MOCK_METHOD(ndk::ScopedAStatus, resetResourceOveruseStats, (const std::vector<std::string>&),
|
D | IoOveruseMonitorTest.cpp | 1132 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F() 1148 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F()
|
/packages/services/Car/cpp/watchdog/stable_server/tests/ |
D | WatchdogServiceHelperTest.cpp | 461 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(packageNames)) in TEST_F() 464 auto status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in TEST_F() 471 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)).Times(0); in TEST_F() 473 ASSERT_FALSE(mWatchdogServiceHelper->resetResourceOveruseStats({}).isOk()) in TEST_F() 481 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)) in TEST_F() 485 ASSERT_FALSE(mWatchdogServiceHelper->resetResourceOveruseStats({}).isOk()) in TEST_F()
|
D | MockCarWatchdogServiceForSystem.h | 44 MOCK_METHOD(ndk::ScopedAStatus, resetResourceOveruseStats, (const std::vector<std::string>&),
|
D | MockWatchdogServiceHelper.h | 68 MOCK_METHOD(ndk::ScopedAStatus, resetResourceOveruseStats, (const std::vector<std::string>&),
|
D | IoOveruseMonitorTest.cpp | 1132 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F() 1148 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F()
|
/packages/services/Car/cpp/watchdog/stable_server/src/ |
D | WatchdogServiceHelper.h | 71 virtual ndk::ScopedAStatus resetResourceOveruseStats( 118 ndk::ScopedAStatus resetResourceOveruseStats(
|
D | WatchdogServiceHelper.cpp | 248 ScopedAStatus WatchdogServiceHelper::resetResourceOveruseStats( in resetResourceOveruseStats() function in android::automotive::watchdog::WatchdogServiceHelper 257 return service->resetResourceOveruseStats(packageNames); in resetResourceOveruseStats()
|
D | IoOveruseMonitor.cpp | 700 if (const auto status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in resetIoOveruseStats()
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogServiceHelper.h | 71 virtual ndk::ScopedAStatus resetResourceOveruseStats( 118 ndk::ScopedAStatus resetResourceOveruseStats(
|
D | WatchdogServiceHelper.cpp | 248 ScopedAStatus WatchdogServiceHelper::resetResourceOveruseStats( in resetResourceOveruseStats() function in android::automotive::watchdog::WatchdogServiceHelper 257 return service->resetResourceOveruseStats(packageNames); in resetResourceOveruseStats()
|
D | IoOveruseMonitor.cpp | 700 if (const auto status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in resetIoOveruseStats()
|
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/ |
D | ICarWatchdogServiceForSystem.aidl | 75 oneway void resetResourceOveruseStats(in @utf8InCpp List<String> packageNames); in resetResourceOveruseStats() method
|
/packages/services/Car/tests/CarWatchdogLibUnitTest/src/android/car/watchdoglib/ |
D | CarWatchdogDaemonHelperTest.java | 381 public void resetResourceOveruseStats(List<String> packageNames) {} in resetResourceOveruseStats() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
|
/packages/services/Car/service/src/com/android/car/watchdog/ |
D | CarWatchdogService.java | 1012 public void resetResourceOveruseStats(List<String> packageNames) { in resetResourceOveruseStats() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl 1022 service.mWatchdogPerfHandler.resetResourceOveruseStats(new ArraySet<>(packageNames)); in resetResourceOveruseStats()
|
D | WatchdogPerfHandler.java | 1021 public void resetResourceOveruseStats(Set<String> genericPackageNames) { in resetResourceOveruseStats() method in WatchdogPerfHandler
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/ |
D | CarWatchdogServiceUnitTest.java | 777 mWatchdogServiceForSystemImpl.resetResourceOveruseStats( in testResetResourceOveruseStats() 780 verify(mMockWatchdogPerfHandler).resetResourceOveruseStats(any()); in testResetResourceOveruseStats()
|
D | WatchdogPerfHandlerUnitTest.java | 1281 mWatchdogPerfHandler.resetResourceOveruseStats(Collections.singleton(packageName)); in testResetResourceOveruseStatsResetsStats() 1326 mWatchdogPerfHandler.resetResourceOveruseStats(new ArraySet<>( in testResetResourceOveruseStatsEnablesPackage() 1371 mWatchdogPerfHandler.resetResourceOveruseStats( in testResetResourceOveruseStatsResetsUserPackageSettings()
|