/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/ |
D | CarWatchdogServiceTest.java | 151 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/ |
D | WatchdogBinderMediatorTest.cpp | 57 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()
|
D | WatchdogProcessServiceTest.cpp | 197 ASSERT_FALSE(mWatchdogProcessService->tellMediatorAlive(mediator, pids, 1234).isOk()) in TEST_F()
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/ |
D | CarWatchdogServiceUnitTest.java | 87 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/ |
D | CarWatchdogDaemonHelperTest.java | 133 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/ |
D | CarWatchdogDaemonHelper.java | 252 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/ |
D | WatchdogBinderMediator.cpp | 183 Status WatchdogBinderMediator::tellMediatorAlive(const sp<ICarWatchdogClient>& mediator, in tellMediatorAlive() function in android::automotive::watchdog::WatchdogBinderMediator 190 return mWatchdogProcessService->tellMediatorAlive(mediator, clientsNotResponding, sessionId); in tellMediatorAlive()
|
D | WatchdogBinderMediator.h | 62 binder::Status tellMediatorAlive(const sp<ICarWatchdogClient>& mediator,
|
D | WatchdogProcessService.h | 55 virtual binder::Status tellMediatorAlive(const sp<ICarWatchdogClient>& mediator,
|
D | WatchdogProcessService.cpp | 158 Status WatchdogProcessService::tellMediatorAlive(const sp<ICarWatchdogClient>& mediator, in tellMediatorAlive() function in android::automotive::watchdog::WatchdogProcessService
|
/packages/services/Car/watchdog/aidl/android/automotive/watchdog/ |
D | ICarWatchdog.aidl | 105 void tellMediatorAlive( in tellMediatorAlive() method
|
/packages/services/Car/watchdog/aidl/aidl_api/carwatchdog_aidl_interface/1/android/automotive/watchdog/ |
D | ICarWatchdog.aidl | 28 …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/ |
D | ICarWatchdog.aidl | 28 …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/ |
D | ICarWatchdog.aidl | 28 …void tellMediatorAlive(in android.automotive.watchdog.ICarWatchdogClient mediator, in int[] client… in tellMediatorAlive() method
|
/packages/services/Car/service/src/com/android/car/watchdog/ |
D | CarWatchdogService.java | 426 mCarWatchdogDaemonHelper.tellMediatorAlive(mWatchdogClient, clientsNotResponding, in reportHealthCheckResult()
|