Home
last modified time | relevance | path

Searched refs:checkIfAlive (Results 1 – 24 of 24) sorted by relevance

/aosp12/packages/services/Car/cpp/watchdog/server/tests/
H A DWatchdogServiceHelperTest.cpp251 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 DMockCarWatchdogServiceForSystem.h43 MOCK_METHOD(android::binder::Status, checkIfAlive,
H A DMockWatchdogServiceHelper.h50 MOCK_METHOD(android::binder::Status, checkIfAlive,
H A DWatchdogBinderMediatorTest.cpp58 MOCK_METHOD(Status, checkIfAlive, (int32_t sessionId, TimeoutLength timeout), (override));
/aosp12/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/
H A DCarWatchdogServiceTest.java186 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 DICarWatchdogClient.aidl21 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 DICarWatchdogClient.aidl37 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 DICarWatchdogClient.aidl37 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 DICarWatchdogClient.aidl21 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 DICarWatchdogClient.aidl33 void checkIfAlive(in int sessionId, in TimeoutLength timeout); in checkIfAlive() method
/aosp12/packages/services/Car/cpp/watchdog/server/src/
H A DWatchdogServiceHelper.h60 virtual android::binder::Status checkIfAlive(const android::wp<android::IBinder>& who,
105 android::binder::Status checkIfAlive(const android::wp<android::IBinder>& who,
H A DWatchdogServiceHelper.cpp120 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 DWatchdogProcessService.cpp373 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 DWatchdogProcessService.h109 android::binder::Status checkIfAlive(TimeoutLength timeout) const;
/aosp12/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
H A DICarWatchdogServiceForSystem.aidl42 oneway void checkIfAlive(in int sessionId, in TimeoutLength timeout); in checkIfAlive() method
/aosp12/packages/services/Car/cpp/watchdog/vts/
H A DVtsAidlWatchdogTargetTest.cpp76 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 DWatchdogClient.h38 ndk::ScopedAStatus checkIfAlive(
/aosp12/packages/services/Car/cpp/watchdog/testclient/src/
H A DWatchdogClient.h53 ndk::ScopedAStatus checkIfAlive(int32_t sessionId, TimeoutLength timeout) override;
H A DWatchdogClient.cpp51 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 DWatchdogClient.cpp44 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 DCarWatchdogDaemonHelperTest.java251 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 DVehicleManager_fuzzer.cpp421 watchdogClient->checkIfAlive(-1, TimeoutLength::TIMEOUT_NORMAL); in invokeWatchDogClient()
/aosp12/packages/services/Car/service/src/com/android/car/watchdog/
H A DCarWatchdogService.java708 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 DCarWatchdogServiceUnitTest.java332 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()