/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/ |
D | CarWatchdogServiceTest.java | 205 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testClientUnderStoppedUser() 210 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testClientUnderStoppedUser() 230 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testMultipleClients() 239 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testMultipleClients() 263 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testClientResponse() 281 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testClientResponse()
|
/packages/services/Car/cpp/watchdog/server/tests/ |
D | WatchdogServiceHelperTest.cpp | 300 checkIfAlive(0, InternalTimeoutLength::TIMEOUT_CRITICAL)) in TEST_F() 303 auto status = mWatchdogServiceHelper->checkIfAlive(mMockCarWatchdogServiceForSystem->asBinder(), in TEST_F() 313 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, checkIfAlive(_, _)).Times(0); in TEST_F() 316 auto status = mWatchdogServiceHelper->checkIfAlive(notRegisteredService->asBinder(), 0, in TEST_F() 324 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, checkIfAlive(_, _)).Times(0); in TEST_F() 326 auto status = mWatchdogServiceHelper->checkIfAlive(mMockCarWatchdogServiceForSystem->asBinder(), in TEST_F() 336 checkIfAlive(0, InternalTimeoutLength::TIMEOUT_CRITICAL)) in TEST_F() 340 auto status = mWatchdogServiceHelper->checkIfAlive(mMockCarWatchdogServiceForSystem->asBinder(), in TEST_F()
|
D | MockCarWatchdogServiceForSystem.h | 33 MOCK_METHOD(ndk::ScopedAStatus, checkIfAlive,
|
D | MockWatchdogServiceHelper.h | 59 MOCK_METHOD(ndk::ScopedAStatus, checkIfAlive,
|
/packages/services/Car/cpp/watchdog/server/src/ |
D | WatchdogServiceHelper.h | 64 virtual ndk::ScopedAStatus checkIfAlive( 111 ndk::ScopedAStatus checkIfAlive(
|
D | WatchdogServiceHelper.cpp | 164 ScopedAStatus WatchdogServiceHelper::checkIfAlive(const SpAIBinder& who, int32_t sessionId, in checkIfAlive() function in android::automotive::watchdog::WatchdogServiceHelper 175 ->checkIfAlive(sessionId, in checkIfAlive()
|
D | WatchdogProcessService.cpp | 679 if (auto status = clientInfo.checkIfAlive(timeout); !status.isOk()) { in doHealthCheck() 1388 ScopedAStatus WatchdogProcessService::ClientInfo::checkIfAlive(TimeoutLength timeout) const { in checkIfAlive() function in android::automotive::watchdog::WatchdogProcessService::ClientInfo 1391 return kClient->checkIfAlive(sessionId, timeout); in checkIfAlive() 1393 return kWatchdogServiceHelper->checkIfAlive(kWatchdogServiceBinder, sessionId, timeout); in checkIfAlive()
|
D | WatchdogProcessService.h | 198 ndk::ScopedAStatus checkIfAlive(
|
/packages/services/Car/cpp/watchdog/vts/ |
D | VtsAidlWatchdogTargetTest.cpp | 70 MOCK_METHOD(ScopedAStatus, checkIfAlive, (int32_t, TimeoutLength), (override)); 74 EXPECT_CALL(*this, checkIfAlive(_, _)) in expectCheckIfAlive()
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/1/android/automotive/watchdog/ |
D | ICarWatchdogClient.aidl | 21 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/2/android/automotive/watchdog/ |
D | ICarWatchdogClient.aidl | 21 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/current/android/automotive/watchdog/ |
D | ICarWatchdogClient.aidl | 37 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/ |
D | ICarWatchdogClient.aidl | 33 void checkIfAlive(in int sessionId, in TimeoutLength timeout); in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/3/android/automotive/watchdog/ |
D | ICarWatchdogClient.aidl | 37 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/2/android/automotive/watchdog/internal/ |
D | ICarWatchdogServiceForSystem.aidl | 37 …oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.internal.TimeoutLength t… in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/1/android/automotive/watchdog/internal/ |
D | ICarWatchdogServiceForSystem.aidl | 37 …oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.internal.TimeoutLength t… in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/ |
D | ICarWatchdogServiceForSystem.aidl | 37 …oneway void checkIfAlive(int sessionId, in android.automotive.watchdog.internal.TimeoutLength time… in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/ |
D | ICarWatchdogServiceForSystem.aidl | 37 …oneway void checkIfAlive(int sessionId, in android.automotive.watchdog.internal.TimeoutLength time… in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/ |
D | ICarWatchdogServiceForSystem.aidl | 43 oneway void checkIfAlive(int sessionId, in TimeoutLength timeout); in checkIfAlive() method
|
/packages/services/Car/cpp/watchdog/testclient/src/ |
D | WatchdogClient.h | 53 ndk::ScopedAStatus checkIfAlive(int32_t sessionId, TimeoutLength timeout) override;
|
D | WatchdogClient.cpp | 51 ndk::ScopedAStatus WatchdogClient::checkIfAlive(int32_t sessionId, TimeoutLength timeout) { in checkIfAlive() function in aidl::android::automotive::watchdog::WatchdogClient
|
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/ |
D | CarWatchdogDaemonHelperTest.java | 411 public void checkIfAlive(int sessionId, int timeout) {} in checkIfAlive() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
|
/packages/services/Car/service/src/com/android/car/watchdog/ |
D | CarWatchdogService.java | 892 public void checkIfAlive(int sessionId, int timeout) { in checkIfAlive() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
|
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/ |
D | CarWatchdogServiceUnitTest.java | 339 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testCarWatchdogServiceHealthCheck()
|