Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/
DCarWatchdogServiceTest.java151 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive( in testClientUnderStoppedUser()
155 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive( in testClientUnderStoppedUser()
178 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive( in testMultipleClients()
183 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive( in testMultipleClients()
202 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive( in testClientResponse()
218 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive( in testClientResponse()
/packages/services/Car/watchdog/server/tests/
DWatchdogBinderMediatorTest.cpp57 MOCK_METHOD(Status, tellMediatorAlive,
276 EXPECT_CALL(*mMockWatchdogProcessService, tellMediatorAlive(_, _, _)).Times(0); in TEST_F()
277 Status status = mWatchdogBinderMediator->tellMediatorAlive(mediator, clientsNotResponding, 456); in TEST_F()
286 tellMediatorAlive(mediator, clientsNotResponding, 456)) in TEST_F()
288 Status status = mWatchdogBinderMediator->tellMediatorAlive(mediator, clientsNotResponding, 456); in TEST_F()
DWatchdogProcessServiceTest.cpp197 ASSERT_FALSE(mWatchdogProcessService->tellMediatorAlive(mediator, pids, 1234).isOk()) in TEST_F()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DCarWatchdogServiceUnitTest.java87 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive(eq(mClientImpl), in testMediatorHealthCheck()
154 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive(eq(mClientImpl), in testClientHealthCheck()
158 verify(mCarWatchdogDaemon, timeout(MAX_WAIT_TIME_MS)).tellMediatorAlive(eq(mClientImpl), in testClientHealthCheck()
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java133 mCarWatchdogDaemonHelper.tellMediatorAlive(mediator, pids, 123456); in testIndirectCall_TellMediatorAlive()
134 verify(mFakeCarWatchdog).tellMediatorAlive(mediator, pids, 123456); in testIndirectCall_TellMediatorAlive()
/packages/services/Car/watchdog/car-watchdog-lib/src/android/car/watchdoglib/
DCarWatchdogDaemonHelper.java252 public void tellMediatorAlive(ICarWatchdogClient mediator, int[] clientsNotResponding, in tellMediatorAlive() method in CarWatchdogDaemonHelper
255 (daemon) -> daemon.tellMediatorAlive(mediator, clientsNotResponding, sessionId)); in tellMediatorAlive()
/packages/services/Car/watchdog/server/src/
DWatchdogBinderMediator.cpp183 Status WatchdogBinderMediator::tellMediatorAlive(const sp<ICarWatchdogClient>& mediator, in tellMediatorAlive() function in android::automotive::watchdog::WatchdogBinderMediator
190 return mWatchdogProcessService->tellMediatorAlive(mediator, clientsNotResponding, sessionId); in tellMediatorAlive()
DWatchdogBinderMediator.h62 binder::Status tellMediatorAlive(const sp<ICarWatchdogClient>& mediator,
DWatchdogProcessService.h55 virtual binder::Status tellMediatorAlive(const sp<ICarWatchdogClient>& mediator,
DWatchdogProcessService.cpp158 Status WatchdogProcessService::tellMediatorAlive(const sp<ICarWatchdogClient>& mediator, in tellMediatorAlive() function in android::automotive::watchdog::WatchdogProcessService
/packages/services/Car/watchdog/aidl/android/automotive/watchdog/
DICarWatchdog.aidl105 void tellMediatorAlive( in tellMediatorAlive() method
/packages/services/Car/watchdog/aidl/aidl_api/carwatchdog_aidl_interface/1/android/automotive/watchdog/
DICarWatchdog.aidl28 …void tellMediatorAlive(in android.automotive.watchdog.ICarWatchdogClient mediator, in int[] client… in tellMediatorAlive() method
/packages/services/Car/watchdog/aidl/aidl_api/carwatchdog_aidl_interface/2/android/automotive/watchdog/
DICarWatchdog.aidl28 …void tellMediatorAlive(in android.automotive.watchdog.ICarWatchdogClient mediator, in int[] client… in tellMediatorAlive() method
/packages/services/Car/watchdog/aidl/aidl_api/carwatchdog_aidl_interface/current/android/automotive/watchdog/
DICarWatchdog.aidl28 …void tellMediatorAlive(in android.automotive.watchdog.ICarWatchdogClient mediator, in int[] client… in tellMediatorAlive() method
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java426 mCarWatchdogDaemonHelper.tellMediatorAlive(mWatchdogClient, clientsNotResponding, in reportHealthCheckResult()