Home
last modified time | relevance | path

Searched refs:requestTodayIoUsageStats (Results 1 – 13 of 13) sorted by relevance

/packages/services/Car/cpp/watchdog/server/tests/
DIoOveruseMonitorTest.cpp338 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
352 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
512 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
577 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
603 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
641 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
679 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
779 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
808 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
889 EXPECT_CALL(*mMockWatchdogServiceHelper, requestTodayIoUsageStats()) in TEST_F()
[all …]
DWatchdogServiceHelperTest.cpp496 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, requestTodayIoUsageStats()) in TEST_F()
499 auto status = mWatchdogServiceHelper->requestTodayIoUsageStats(); in TEST_F()
506 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, requestTodayIoUsageStats()).Times(0); in TEST_F()
508 ASSERT_FALSE(mWatchdogServiceHelper->requestTodayIoUsageStats().isOk()) in TEST_F()
516 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, requestTodayIoUsageStats()) in TEST_F()
520 ASSERT_FALSE(mWatchdogServiceHelper->requestTodayIoUsageStats().isOk()) in TEST_F()
DMockCarWatchdogServiceForSystem.h55 MOCK_METHOD(ndk::ScopedAStatus, requestTodayIoUsageStats, (), (override));
DMockWatchdogServiceHelper.h75 MOCK_METHOD(ndk::ScopedAStatus, requestTodayIoUsageStats, (), (const, override));
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogServiceHelper.h78 virtual ndk::ScopedAStatus requestTodayIoUsageStats() const = 0;
125 ndk::ScopedAStatus requestTodayIoUsageStats() const override;
DWatchdogServiceHelper.cpp260 ScopedAStatus WatchdogServiceHelper::requestTodayIoUsageStats() const { in requestTodayIoUsageStats() function in android::automotive::watchdog::WatchdogServiceHelper
268 return service->requestTodayIoUsageStats(); in requestTodayIoUsageStats()
DIoOveruseMonitor.cpp484 if (const auto status = mWatchdogServiceHelper->requestTodayIoUsageStats(); !status.isOk()) { in requestTodayIoUsageStatsLocked()
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl45 oneway void requestTodayIoUsageStats(); in requestTodayIoUsageStats() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl45 oneway void requestTodayIoUsageStats(); in requestTodayIoUsageStats() method
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl111 oneway void requestTodayIoUsageStats(); in requestTodayIoUsageStats() method
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java440 public void requestTodayIoUsageStats() {} in requestTodayIoUsageStats() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java1000 public void requestTodayIoUsageStats() { in requestTodayIoUsageStats() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java763 mWatchdogServiceForSystemImpl.requestTodayIoUsageStats(); in testRequestTodayIoUsageStats()