/aosp12/packages/services/Car/cpp/watchdog/server/tests/ |
H A D | WatchdogServiceHelperTest.cpp | 251 checkIfAlive(0, aawi::TimeoutLength::TIMEOUT_CRITICAL)) in TEST_F() 253 Status status = mWatchdogServiceHelper->checkIfAlive(mMockCarWatchdogServiceForSystemBinder, 0, in TEST_F() 261 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, checkIfAlive(_, _)).Times(0); in TEST_F() 262 Status status = mWatchdogServiceHelper->checkIfAlive(new MockBinder(), 0, in TEST_F() 269 EXPECT_CALL(*mMockCarWatchdogServiceForSystem, checkIfAlive(_, _)).Times(0); in TEST_F() 270 Status status = mWatchdogServiceHelper->checkIfAlive(mMockCarWatchdogServiceForSystemBinder, 0, in TEST_F() 279 checkIfAlive(0, aawi::TimeoutLength::TIMEOUT_CRITICAL)) in TEST_F() 281 Status status = mWatchdogServiceHelper->checkIfAlive(mMockCarWatchdogServiceForSystemBinder, 0, in TEST_F()
|
H A D | MockCarWatchdogServiceForSystem.h | 43 MOCK_METHOD(android::binder::Status, checkIfAlive,
|
H A D | MockWatchdogServiceHelper.h | 50 MOCK_METHOD(android::binder::Status, checkIfAlive,
|
H A D | WatchdogBinderMediatorTest.cpp | 58 MOCK_METHOD(Status, checkIfAlive, (int32_t sessionId, TimeoutLength timeout), (override));
|
/aosp12/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/ |
H A D | CarWatchdogServiceTest.java | 186 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testClientUnderStoppedUser() 192 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testClientUnderStoppedUser() 213 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testMultipleClients() 222 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testMultipleClients() 244 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testClientResponse() 262 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testClientResponse()
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/1/android/automotive/watchdog/ |
H A D | ICarWatchdogClient.aidl | 21 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/3/android/automotive/watchdog/ |
H A D | ICarWatchdogClient.aidl | 37 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/current/android/automotive/watchdog/ |
H A D | ICarWatchdogClient.aidl | 37 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/2/android/automotive/watchdog/ |
H A D | ICarWatchdogClient.aidl | 21 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/ |
H A D | ICarWatchdogClient.aidl | 33 void checkIfAlive(in int sessionId, in TimeoutLength timeout); in checkIfAlive() method
|
/aosp12/packages/services/Car/cpp/watchdog/server/src/ |
H A D | WatchdogServiceHelper.h | 60 virtual android::binder::Status checkIfAlive(const android::wp<android::IBinder>& who, 105 android::binder::Status checkIfAlive(const android::wp<android::IBinder>& who,
|
H A D | WatchdogServiceHelper.cpp | 120 Status WatchdogServiceHelper::checkIfAlive(const wp<IBinder>& who, int32_t sessionId, in checkIfAlive() function in android::automotive::watchdog::WatchdogServiceHelper 132 return service->checkIfAlive(sessionId, static_cast<aawi::TimeoutLength>(timeout)); in checkIfAlive()
|
H A D | WatchdogProcessService.cpp | 373 Status status = clientInfo.checkIfAlive(timeout); in doHealthCheck() 871 Status WatchdogProcessService::ClientInfo::checkIfAlive(TimeoutLength timeout) const { in checkIfAlive() function in android::automotive::watchdog::WatchdogProcessService::ClientInfo 873 return client->checkIfAlive(sessionId, timeout); in checkIfAlive() 875 return watchdogServiceHelper->checkIfAlive(watchdogServiceBinder, sessionId, timeout); in checkIfAlive()
|
H A D | WatchdogProcessService.h | 109 android::binder::Status checkIfAlive(TimeoutLength timeout) const;
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/ |
H A D | ICarWatchdogServiceForSystem.aidl | 42 oneway void checkIfAlive(in int sessionId, in TimeoutLength timeout); in checkIfAlive() method
|
/aosp12/packages/services/Car/cpp/watchdog/vts/ |
H A D | VtsAidlWatchdogTargetTest.cpp | 76 MOCK_METHOD(Status, checkIfAlive, (int32_t, TimeoutLength), (override)); 80 EXPECT_CALL(*this, checkIfAlive(_, _)) in expectCheckIfAlive()
|
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/ |
H A D | WatchdogClient.h | 38 ndk::ScopedAStatus checkIfAlive(
|
/aosp12/packages/services/Car/cpp/watchdog/testclient/src/ |
H A D | WatchdogClient.h | 53 ndk::ScopedAStatus checkIfAlive(int32_t sessionId, TimeoutLength timeout) override;
|
H A D | WatchdogClient.cpp | 51 ndk::ScopedAStatus WatchdogClient::checkIfAlive(int32_t sessionId, TimeoutLength timeout) { in checkIfAlive() function in aidl::android::automotive::watchdog::WatchdogClient
|
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/common/src/ |
H A D | WatchdogClient.cpp | 44 ndk::ScopedAStatus WatchdogClient::checkIfAlive(int32_t sessionId, TimeoutLength /*timeout*/) { in checkIfAlive() function in android::hardware::automotive::vehicle::V2_0::WatchdogClient
|
/aosp12/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/ |
H A D | CarWatchdogDaemonHelperTest.java | 251 public void checkIfAlive(int sessionId, int timeout) {} in checkIfAlive() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
|
/aosp12/hardware/interfaces/automotive/vehicle/2.0/default/tests/fuzzer/ |
H A D | VehicleManager_fuzzer.cpp | 421 watchdogClient->checkIfAlive(-1, TimeoutLength::TIMEOUT_NORMAL); in invokeWatchDogClient()
|
/aosp12/packages/services/Car/service/src/com/android/car/watchdog/ |
H A D | CarWatchdogService.java | 708 public void checkIfAlive(int sessionId, int timeout) { in checkIfAlive() method in CarWatchdogService.ICarWatchdogServiceForSystemImpl
|
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/ |
H A D | CarWatchdogServiceUnitTest.java | 332 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testCarWatchdogServiceHealthCheck() 342 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testRegisterClient() 361 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testUnregisterUnregisteredClient() 3875 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testClientHealthCheck() 3879 mWatchdogServiceForSystemImpl.checkIfAlive(987654, TIMEOUT_CRITICAL); in testClientHealthCheck()
|