Home
last modified time | relevance | path

Searched refs:onAidlVhalPidFetched (Results 1 – 15 of 15) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DWatchdogProcessHandlerUnitTest.java197 verify(mMockCarWatchdogDaemonHelper, timeout(MAX_WAIT_TIME_MS)).onAidlVhalPidFetched( in testAsyncFetchAidlVhalPid()
210 verify(mMockCarWatchdogDaemonHelper, never()).onAidlVhalPidFetched(INVALID_PID); in testAsyncFetchAidlWithInvalidPid()
218 .onAidlVhalPidFetched(anyInt()); in testAsyncFetchAidlVhalPidWithDaemonRemoteException()
223 verify(mMockCarWatchdogDaemonHelper, timeout(MAX_WAIT_TIME_MS)).onAidlVhalPidFetched( in testAsyncFetchAidlVhalPidWithDaemonRemoteException()
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java316 mCarWatchdogDaemonHelper.onAidlVhalPidFetched(vhalPid); in testOnAidlVhalPidFetched()
318 verify(mFakeCarWatchdog).onAidlVhalPidFetched(vhalPid); in testOnAidlVhalPidFetched()
326 () -> mCarWatchdogDaemonHelper.onAidlVhalPidFetched(12846)); in testOnAidlVhalPidFetched_DaemonVersionTooLow()
/packages/services/Car/cpp/watchdog/car-watchdog-lib/src/android/car/watchdoglib/
DCarWatchdogDaemonHelper.java338 public void onAidlVhalPidFetched(int pid) throws RemoteException { in onAidlVhalPidFetched() method in CarWatchdogDaemonHelper
340 (daemon) -> daemon.onAidlVhalPidFetched(pid), /* expectedDaemonVersion= */ 3); in onAidlVhalPidFetched()
/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogInternalHandlerTest.cpp723 EXPECT_CALL(*mMockWatchdogProcessService, onAidlVhalPidFetched(vhalPid)).Times(1); in TEST_F()
725 auto status = mWatchdogInternalHandler->onAidlVhalPidFetched(vhalPid); in TEST_F()
731 EXPECT_CALL(*mMockWatchdogProcessService, onAidlVhalPidFetched(_)).Times(0); in TEST_F()
733 ASSERT_FALSE(mWatchdogInternalHandler->onAidlVhalPidFetched(56423).isOk()) in TEST_F()
DMockWatchdogProcessService.h88 MOCK_METHOD(void, onAidlVhalPidFetched, (int32_t), (override));
DMockWatchdogInternalHandler.h83 MOCK_METHOD(ndk::ScopedAStatus, onAidlVhalPidFetched, (int32_t), (override));
DWatchdogProcessServiceTest.cpp338 mTest->mWatchdogProcessService->onAidlVhalPidFetched(kTestAidlVhalPid); in handleMessage()
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdog.aidl186 void onAidlVhalPidFetched(int pid); in onAidlVhalPidFetched() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DICarWatchdog.aidl48 void onAidlVhalPidFetched(int pid); in onAidlVhalPidFetched() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DICarWatchdog.aidl48 void onAidlVhalPidFetched(int pid); in onAidlVhalPidFetched() method
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogInternalHandler.cpp449 ScopedAStatus WatchdogInternalHandler::onAidlVhalPidFetched(int pid) { in onAidlVhalPidFetched() function in android::automotive::watchdog::WatchdogInternalHandler
453 mWatchdogProcessService->onAidlVhalPidFetched(pid); in onAidlVhalPidFetched()
DWatchdogProcessService.h105 virtual void onAidlVhalPidFetched(int32_t) = 0;
163 void onAidlVhalPidFetched(int32_t) override;
DWatchdogInternalHandler.h121 ndk::ScopedAStatus onAidlVhalPidFetched(int pid) override;
DWatchdogProcessService.cpp1241 void WatchdogProcessService::onAidlVhalPidFetched(pid_t pid) { in onAidlVhalPidFetched() function in android::automotive::watchdog::WatchdogProcessService
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogProcessHandler.java348 mCarWatchdogDaemonHelper.onAidlVhalPidFetched(pid); in asyncFetchAidlVhalPid()