Home
last modified time | relevance | path

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

/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogServiceHelperTest.cpp426 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(packageNames)) in TEST_F()
429 Status status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in TEST_F()
436 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)).Times(0); in TEST_F()
438 Status status = mWatchdogServiceHelper->resetResourceOveruseStats({}); in TEST_F()
448 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, resetResourceOveruseStats(_)) in TEST_F()
451 Status status = mWatchdogServiceHelper->resetResourceOveruseStats({}); in TEST_F()
DMockCarWatchdogServiceForSystem.h54 MOCK_METHOD(android::binder::Status, resetResourceOveruseStats,
DMockWatchdogServiceHelper.h62 MOCK_METHOD(android::binder::Status, resetResourceOveruseStats,
DIoOveruseMonitorTest.cpp763 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F()
779 EXPECT_CALL(*mMockWatchdogServiceHelper, resetResourceOveruseStats(packageNames)) in TEST_F()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogServiceHelper.h71 virtual android::binder::Status resetResourceOveruseStats(
112 android::binder::Status resetResourceOveruseStats(const std::vector<std::string>& packageNames);
DWatchdogServiceHelper.cpp206 Status WatchdogServiceHelper::resetResourceOveruseStats( in resetResourceOveruseStats() function in android::automotive::watchdog::WatchdogServiceHelper
214 return service->resetResourceOveruseStats(packageNames); in resetResourceOveruseStats()
DIoOveruseMonitor.cpp540 if (const auto status = mWatchdogServiceHelper->resetResourceOveruseStats(packageNames); in resetIoOveruseStats()
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl71 oneway void resetResourceOveruseStats(in @utf8InCpp List<String> packageNames); in resetResourceOveruseStats() method
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java523 public void resetResourceOveruseStats(List<String> packageNames) { in resetResourceOveruseStats() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
533 service.mWatchdogPerfHandler.resetResourceOveruseStats(new ArraySet<>(packageNames)); in resetResourceOveruseStats()
DWatchdogPerfHandler.java627 public void resetResourceOveruseStats(Set<String> packageNames) { in resetResourceOveruseStats() method in WatchdogPerfHandler
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java268 public void resetResourceOveruseStats(List<String> packageNames) {} in resetResourceOveruseStats() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java1096 mWatchdogServiceForSystemImpl.resetResourceOveruseStats( in testResetResourceOveruseStats()