Home
last modified time | relevance | path

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

/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogServiceHelperTest.cpp391 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, latestIoOveruseStats(expectedIoOveruseStats)) in TEST_F()
394 Status status = mWatchdogServiceHelper->latestIoOveruseStats(expectedIoOveruseStats); in TEST_F()
401 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, latestIoOveruseStats(_)).Times(0); in TEST_F()
403 Status status = mWatchdogServiceHelper->latestIoOveruseStats({}); in TEST_F()
413 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, latestIoOveruseStats(_)) in TEST_F()
416 Status status = mWatchdogServiceHelper->latestIoOveruseStats({}); in TEST_F()
DIoOveruseMonitorTest.cpp278 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)) in TEST_F()
318 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)) in TEST_F()
368 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)) in TEST_F()
421 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)) in TEST_F()
472 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)).Times(0); in TEST_F()
495 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)) in TEST_F()
527 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)) in TEST_F()
587 EXPECT_CALL(*mMockWatchdogServiceHelper, latestIoOveruseStats(_)).Times(0); in TEST_F()
DMockCarWatchdogServiceForSystem.h51 android::binder::Status, latestIoOveruseStats,
DMockWatchdogServiceHelper.h59 android::binder::Status, latestIoOveruseStats,
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogServiceHelper.h68 virtual android::binder::Status latestIoOveruseStats(
109 android::binder::Status latestIoOveruseStats(
DWatchdogServiceHelper.cpp195 Status WatchdogServiceHelper::latestIoOveruseStats( in latestIoOveruseStats() function in android::automotive::watchdog::WatchdogServiceHelper
203 return service->latestIoOveruseStats(packageIoOveruseStats); in latestIoOveruseStats()
DIoOveruseMonitor.cpp306 if (const auto status = mWatchdogServiceHelper->latestIoOveruseStats(mLatestIoOveruseStats); in onPeriodicCollection()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java240 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testGetResourceOveruseStats()
285 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testGetAllResourceOveruseStatsWithNoMinimum()
345 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testGetAllResourceOveruseStatsWithMinimum()
379 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testGetResourceOveruseStatsForUserPackage()
567 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testResourceOveruseListenerForSystem()
576 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testResourceOveruseListenerForSystem()
1041 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in testLatestIoOveruseStats()
1368 mWatchdogServiceForSystemImpl.latestIoOveruseStats(packageIoOveruseStats); in injectIoOveruseStatsForPackages()
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl64 oneway void latestIoOveruseStats(in List<PackageIoOveruseStats> packageIoOveruseStats); in latestIoOveruseStats() method
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java509 public void latestIoOveruseStats(List<PackageIoOveruseStats> packageIoOveruseStats) { in latestIoOveruseStats() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
519 service.mWatchdogPerfHandler.latestIoOveruseStats(packageIoOveruseStats); in latestIoOveruseStats()
DWatchdogPerfHandler.java511 public void latestIoOveruseStats(List<PackageIoOveruseStats> packageIoOveruseStats) { in latestIoOveruseStats() method in WatchdogPerfHandler
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java265 public void latestIoOveruseStats(List<PackageIoOveruseStats> ioOveruseStats) {} in latestIoOveruseStats() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl