Home
last modified time | relevance | path

Searched refs:tellCarWatchdogServiceAlive (Results 1 – 18 of 18) sorted by relevance

/packages/services/Car/tests/carservice_test/src/com/android/car/watchdog/
DCarWatchdogServiceTest.java207 .tellCarWatchdogServiceAlive(eq(mWatchdogServiceForSystemImpl), in testClientUnderStoppedUser()
212 .tellCarWatchdogServiceAlive(eq(mWatchdogServiceForSystemImpl), in testClientUnderStoppedUser()
235 .tellCarWatchdogServiceAlive(eq(mWatchdogServiceForSystemImpl), in testMultipleClients()
242 .tellCarWatchdogServiceAlive(eq(mWatchdogServiceForSystemImpl), in testMultipleClients()
265 .tellCarWatchdogServiceAlive(eq(mWatchdogServiceForSystemImpl), in testClientResponse()
284 .tellCarWatchdogServiceAlive(eq(mWatchdogServiceForSystemImpl), in testClientResponse()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DWatchdogProcessHandlerUnitTest.java126 timeout(MAX_WAIT_TIME_MS)).tellCarWatchdogServiceAlive( in testPostHealthCheckMessage()
145 timeout(1000)).tellCarWatchdogServiceAlive( in testRegisterClient()
299 timeout(MAX_WAIT_TIME_MS)).tellCarWatchdogServiceAlive( in testClientHealthCheck()
307 timeout(MAX_WAIT_TIME_MS)).tellCarWatchdogServiceAlive( in testClientHealthCheck()
/packages/services/Car/cpp/watchdog/car-watchdog-lib/src/android/car/watchdoglib/
DCarWatchdogDaemonHelper.java220 public void tellCarWatchdogServiceAlive( in tellCarWatchdogServiceAlive() method in CarWatchdogDaemonHelper
224 (daemon) -> daemon.tellCarWatchdogServiceAlive( in tellCarWatchdogServiceAlive()
/packages/services/Car/cpp/watchdog/server/tests/
DWatchdogInternalHandlerTest.cpp328 tellCarWatchdogServiceAlive(service, clientsNotResponding, 456)) in TEST_F()
331 auto status = mWatchdogInternalHandler->tellCarWatchdogServiceAlive(service, in TEST_F()
338 EXPECT_CALL(*mMockWatchdogProcessService, tellCarWatchdogServiceAlive(_, _, _)).Times(0); in TEST_F()
346 auto status = mWatchdogInternalHandler->tellCarWatchdogServiceAlive(service, in TEST_F()
DMockWatchdogProcessService.h75 ndk::ScopedAStatus, tellCarWatchdogServiceAlive,
DMockWatchdogInternalHandler.h53 ndk::ScopedAStatus, tellCarWatchdogServiceAlive,
DWatchdogProcessServiceTest.cpp584 ->tellCarWatchdogServiceAlive(mockService, processIdentifiers, 1234) in TEST_F()
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/1/android/automotive/watchdog/internal/
DICarWatchdog.aidl40 …void tellCarWatchdogServiceAlive(in android.automotive.watchdog.internal.ICarWatchdogServiceForSys… in tellCarWatchdogServiceAlive() method
/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/
DICarWatchdog.aidl86 void tellCarWatchdogServiceAlive(in ICarWatchdogServiceForSystem service, in tellCarWatchdogServiceAlive() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/2/android/automotive/watchdog/internal/
DICarWatchdog.aidl40 …void tellCarWatchdogServiceAlive(in android.automotive.watchdog.internal.ICarWatchdogServiceForSys… in tellCarWatchdogServiceAlive() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/3/android/automotive/watchdog/internal/
DICarWatchdog.aidl40 …void tellCarWatchdogServiceAlive(in android.automotive.watchdog.internal.ICarWatchdogServiceForSys… in tellCarWatchdogServiceAlive() method
/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog.internal/current/android/automotive/watchdog/internal/
DICarWatchdog.aidl40 …void tellCarWatchdogServiceAlive(in android.automotive.watchdog.internal.ICarWatchdogServiceForSys… in tellCarWatchdogServiceAlive() method
/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/
DCarWatchdogDaemonHelperTest.java169 mCarWatchdogDaemonHelper.tellCarWatchdogServiceAlive(service, processIdentifiers, 123456); in testIndirectCall_TellCarWatchdogServiceAlive()
171 verify(mFakeCarWatchdog).tellCarWatchdogServiceAlive(service, processIdentifiers, 123456); in testIndirectCall_TellCarWatchdogServiceAlive()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogInternalHandler.cpp262 ScopedAStatus WatchdogInternalHandler::tellCarWatchdogServiceAlive( in tellCarWatchdogServiceAlive() function in android::automotive::watchdog::WatchdogInternalHandler
272 return mWatchdogProcessService->tellCarWatchdogServiceAlive(service, clientsNotResponding, in tellCarWatchdogServiceAlive()
DWatchdogProcessService.h91 virtual ndk::ScopedAStatus tellCarWatchdogServiceAlive(
149 ndk::ScopedAStatus tellCarWatchdogServiceAlive(
DWatchdogInternalHandler.h91 ndk::ScopedAStatus tellCarWatchdogServiceAlive(
DWatchdogProcessService.cpp421 ScopedAStatus WatchdogProcessService::tellCarWatchdogServiceAlive( in tellCarWatchdogServiceAlive() function in android::automotive::watchdog::WatchdogProcessService
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogProcessHandler.java485 mCarWatchdogDaemonHelper.tellCarWatchdogServiceAlive( in reportHealthCheckResult()