Home
last modified time | relevance | path

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

/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogServiceHelperTest.cpp543 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, onLatestResourceStats(expectedResourceStats)) in TEST_F()
546 auto status = mWatchdogServiceHelper->onLatestResourceStats(expectedResourceStats); in TEST_F()
553 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, onLatestResourceStats(_)).Times(0); in TEST_F()
555 ASSERT_FALSE(mWatchdogServiceHelper->onLatestResourceStats({}).isOk()) in TEST_F()
563 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, onLatestResourceStats(_)) in TEST_F()
567 ASSERT_FALSE(mWatchdogServiceHelper->onLatestResourceStats({}).isOk()) in TEST_F()
DWatchdogPerfServiceTest.cpp395 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
412 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
433 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
505 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)) in TEST_F()
562 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)) in TEST_F()
591 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
624 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
1659 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
1686 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)) in TEST_F()
1718 EXPECT_CALL(*mMockWatchdogServiceHelper, onLatestResourceStats(_)).Times(0); in TEST_F()
[all …]
DMockCarWatchdogServiceForSystem.h51 MOCK_METHOD(ndk::ScopedAStatus, onLatestResourceStats,
DMockWatchdogServiceHelper.h71 MOCK_METHOD(ndk::ScopedAStatus, onLatestResourceStats,
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogServiceHelper.h74 virtual ndk::ScopedAStatus onLatestResourceStats(
121 ndk::ScopedAStatus onLatestResourceStats(
DWatchdogServiceHelper.cpp271 ScopedAStatus WatchdogServiceHelper::onLatestResourceStats( in onLatestResourceStats() function in android::automotive::watchdog::WatchdogServiceHelper
280 return service->onLatestResourceStats(resourceStats); in onLatestResourceStats()
DWatchdogPerfService.cpp1053 if (auto status = mWatchdogServiceHelper->onLatestResourceStats(unsentResourceStats); in sendResourceStats()
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl43 …oneway void onLatestResourceStats(in List<android.automotive.watchdog.internal.ResourceStats> reso… in onLatestResourceStats() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl43 …oneway void onLatestResourceStats(in List<android.automotive.watchdog.internal.ResourceStats> reso… in onLatestResourceStats() method
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl93 oneway void onLatestResourceStats(in List<ResourceStats> resourceStats); in onLatestResourceStats() method
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java434 public void onLatestResourceStats(List<ResourceStats> resourceStats) {} in onLatestResourceStats() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java938 public void onLatestResourceStats(List<ResourceStats> resourceStats) { in onLatestResourceStats() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java687 mWatchdogServiceForSystemImpl.onLatestResourceStats(List.of(resourceStats)); in testOnLatestResourceOveruseStats()