Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/
DCarWatchdogServiceTest.java205 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/
DWatchdogServiceHelperTest.cpp300 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()
DMockCarWatchdogServiceForSystem.h33 MOCK_METHOD(ndk::ScopedAStatus, checkIfAlive,
DMockWatchdogServiceHelper.h59 MOCK_METHOD(ndk::ScopedAStatus, checkIfAlive,
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogServiceHelper.h64 virtual ndk::ScopedAStatus checkIfAlive(
111 ndk::ScopedAStatus checkIfAlive(
DWatchdogServiceHelper.cpp164 ScopedAStatus WatchdogServiceHelper::checkIfAlive(const SpAIBinder& who, int32_t sessionId, in checkIfAlive() function in android::automotive::watchdog::WatchdogServiceHelper
175 ->checkIfAlive(sessionId, in checkIfAlive()
DWatchdogProcessService.cpp679 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()
DWatchdogProcessService.h198 ndk::ScopedAStatus checkIfAlive(
/packages/services/Car/cpp/watchdog/vts/
DVtsAidlWatchdogTargetTest.cpp70 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/
DICarWatchdogClient.aidl21 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/
DICarWatchdogClient.aidl21 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/
DICarWatchdogClient.aidl37 oneway void checkIfAlive(in int sessionId, in android.automotive.watchdog.TimeoutLength timeout); in checkIfAlive() method
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/
DICarWatchdogClient.aidl33 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/
DICarWatchdogClient.aidl37 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/
DICarWatchdogServiceForSystem.aidl37 …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/
DICarWatchdogServiceForSystem.aidl37 …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/
DICarWatchdogServiceForSystem.aidl37 …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/
DICarWatchdogServiceForSystem.aidl37 …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/
DICarWatchdogServiceForSystem.aidl43 oneway void checkIfAlive(int sessionId, in TimeoutLength timeout); in checkIfAlive() method
/packages/services/Car/cpp/watchdog/testclient/src/
DWatchdogClient.h53 ndk::ScopedAStatus checkIfAlive(int32_t sessionId, TimeoutLength timeout) override;
DWatchdogClient.cpp51 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/
DCarWatchdogDaemonHelperTest.java411 public void checkIfAlive(int sessionId, int timeout) {} in checkIfAlive() method in CarWatchdogDaemonHelperTest.ICarWatchdogServiceForSystemImpl
/packages/services/Car/service/src/com/android/car/watchdog/
DCarWatchdogService.java892 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/
DCarWatchdogServiceUnitTest.java339 mWatchdogServiceForSystemImpl.checkIfAlive(123456, TIMEOUT_CRITICAL); in testCarWatchdogServiceHealthCheck()