Home
last modified time | relevance | path

Searched refs:requestAidlVhalPid (Results 1 – 14 of 14) sorted by relevance

/packages/services/Car/cpp/watchdog/server/tests/
DMockWatchdogServiceHelper.h39 ON_CALL(*this, requestAidlVhalPid()).WillByDefault([]() { in MockWatchdogServiceHelper()
74 MOCK_METHOD(ndk::ScopedAStatus, requestAidlVhalPid, (), (const, override));
DWatchdogServiceHelperTest.cpp574 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, requestAidlVhalPid()) in TEST_F()
577 auto status = mWatchdogServiceHelper->requestAidlVhalPid(); in TEST_F()
583 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, requestAidlVhalPid()).Times(0); in TEST_F()
585 ASSERT_FALSE(mWatchdogServiceHelper->requestAidlVhalPid().isOk()) in TEST_F()
592 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, requestAidlVhalPid()) in TEST_F()
596 ASSERT_FALSE(mWatchdogServiceHelper->requestAidlVhalPid().isOk()) in TEST_F()
DWatchdogProcessServiceTest.cpp270 EXPECT_CALL(*mockServiceHelper, requestAidlVhalPid()).WillOnce([&]() { in expectRequestAidlVhalPidAndRespond()
469 EXPECT_CALL(*mockServiceHelper, requestAidlVhalPid()) in TEST_F()
481 EXPECT_CALL(*mockServiceHelper, requestAidlVhalPid()).Times(0); in TEST_F()
637 EXPECT_CALL(*mockServiceHelper, requestAidlVhalPid()) in TEST_F()
670 EXPECT_CALL(*mockServiceHelper, requestAidlVhalPid()).Times(0); in TEST_F()
DMockCarWatchdogServiceForSystem.h54 MOCK_METHOD(ndk::ScopedAStatus, requestAidlVhalPid, (), (override));
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogServiceHelper.h77 virtual ndk::ScopedAStatus requestAidlVhalPid() const = 0;
124 ndk::ScopedAStatus requestAidlVhalPid() const override;
DWatchdogServiceHelper.cpp283 ScopedAStatus WatchdogServiceHelper::requestAidlVhalPid() const { in requestAidlVhalPid() function in android::automotive::watchdog::WatchdogServiceHelper
291 return service->requestAidlVhalPid(); in requestAidlVhalPid()
DWatchdogProcessService.h275 android::base::Result<void> requestAidlVhalPid();
DWatchdogProcessService.cpp1216 if (const auto status = serviceHelper->requestAidlVhalPid(); !status.isOk()) { in cacheVhalProcessIdentifier()
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl44 oneway void requestAidlVhalPid(); in requestAidlVhalPid() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl44 oneway void requestAidlVhalPid(); in requestAidlVhalPid() method
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdogServiceForSystem.aidl104 oneway void requestAidlVhalPid(); in requestAidlVhalPid() method
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java437 public void requestAidlVhalPid() {} in requestAidlVhalPid() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java990 public void requestAidlVhalPid() { in requestAidlVhalPid() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java374 mWatchdogServiceForSystemImpl.requestAidlVhalPid(); in testRequestAidlVhalPid()