/aosp12/packages/services/Car/cpp/watchdog/server/tests/ |
H A D | WatchdogInternalHandlerTest.cpp | 300 ->notifySystemStateChange(aawi::StateType::POWER_CYCLE, in TEST_F() 312 ->notifySystemStateChange(aawi::StateType::POWER_CYCLE, in TEST_F() 325 ->notifySystemStateChange(aawi::StateType::POWER_CYCLE, in TEST_F() 339 status = mWatchdogInternalHandler->notifySystemStateChange(type, 3000, -1); in TEST_F() 370 ->notifySystemStateChange(type, 234567, in TEST_F() 381 ->notifySystemStateChange(type, 234567, in TEST_F() 392 ->notifySystemStateChange(type, 234567, in TEST_F() 405 status = mWatchdogInternalHandler->notifySystemStateChange(type, 234567, 3000); in TEST_F() 415 ->notifySystemStateChange(type, in TEST_F() 425 Status status = mWatchdogInternalHandler->notifySystemStateChange(type, 0, -1); in TEST_F() [all …]
|
H A D | WatchdogBinderMediatorTest.cpp | 356 Status status = mWatchdogBinderMediator->notifySystemStateChange(StateType::POWER_CYCLE, 0, 0); in TEST_F()
|
/aosp12/packages/services/Car/service/src/com/android/car/watchdog/ |
H A D | CarWatchdogService.java | 153 mCarWatchdogDaemonHelper.notifySystemStateChange(StateType.USER_STATE, 490 mCarWatchdogDaemonHelper.notifySystemStateChange(StateType.USER_STATE, info.id, in notifyAllUserStates() 511 mCarWatchdogDaemonHelper.notifySystemStateChange( in notifyPowerCycleChange() 525 mCarWatchdogDaemonHelper.notifySystemStateChange( in notifyGarageModeChange() 647 mCarWatchdogDaemonHelper.notifySystemStateChange(StateType.USER_STATE, userId, in subscribeUserStateChange()
|
/aosp12/packages/services/Car/cpp/watchdog/car-watchdog-lib/src/android/car/watchdoglib/ |
H A D | CarWatchdogDaemonHelper.java | 251 public void notifySystemStateChange(int type, int arg1, int arg2) throws RemoteException { in notifySystemStateChange() method in CarWatchdogDaemonHelper 252 invokeDaemonMethod((daemon) -> daemon.notifySystemStateChange(type, arg1, arg2)); in notifySystemStateChange()
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/internal/ |
H A D | ICarWatchdog.aidl | 105 void notifySystemStateChange(in StateType type, in int arg1, in int arg2); in notifySystemStateChange() method
|
/aosp12/packages/services/Car/tests/carservice_unit_test/src/android/car/watchdoglib/ |
H A D | CarWatchdogDaemonHelperTest.java | 155 mCarWatchdogDaemonHelper.notifySystemStateChange(StateType.POWER_CYCLE, in testIndirectCall_NotifySystemStateChange() 158 verify(mFakeCarWatchdog).notifySystemStateChange(StateType.POWER_CYCLE, in testIndirectCall_NotifySystemStateChange()
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/1/android/automotive/watchdog/ |
H A D | ICarWatchdog.aidl | 30 …void notifySystemStateChange(in android.automotive.watchdog.StateType type, in int arg1, in int ar… in notifySystemStateChange() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/2/android/automotive/watchdog/ |
H A D | ICarWatchdog.aidl | 30 …void notifySystemStateChange(in android.automotive.watchdog.StateType type, in int arg1, in int ar… in notifySystemStateChange() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/android/automotive/watchdog/ |
H A D | ICarWatchdog.aidl | 134 void notifySystemStateChange(in StateType type, in int arg1, in int arg2); in notifySystemStateChange() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/3/android/automotive/watchdog/ |
H A D | ICarWatchdog.aidl | 67 …void notifySystemStateChange(in android.automotive.watchdog.StateType type, in int arg1, in int ar… in notifySystemStateChange() method
|
/aosp12/packages/services/Car/cpp/watchdog/aidl/aidl_api/android.automotive.watchdog/current/android/automotive/watchdog/ |
H A D | ICarWatchdog.aidl | 67 …void notifySystemStateChange(in android.automotive.watchdog.StateType type, in int arg1, in int ar… in notifySystemStateChange() method
|
/aosp12/packages/services/Car/cpp/watchdog/server/src/ |
H A D | WatchdogInternalHandler.h | 81 android::binder::Status notifySystemStateChange(
|
H A D | WatchdogBinderMediator.h | 98 android::binder::Status notifySystemStateChange(StateType type, int32_t arg1,
|
H A D | WatchdogInternalHandler.cpp | 160 Status WatchdogInternalHandler::notifySystemStateChange(aawi::StateType type, int32_t arg1, in notifySystemStateChange() function in android::automotive::watchdog::WatchdogInternalHandler
|
H A D | WatchdogBinderMediator.cpp | 320 Status WatchdogBinderMediator::notifySystemStateChange(StateType /*type*/, int32_t /*arg1*/, in notifySystemStateChange() function in android::automotive::watchdog::WatchdogBinderMediator
|
/aosp12/frameworks/opt/car/services/src/com/android/internal/car/ |
H A D | CarServiceHelperService.java | 191 mCarWatchdogDaemonHelper.notifySystemStateChange(StateType.POWER_CYCLE, 267 mCarWatchdogDaemonHelper.notifySystemStateChange( in onBootPhase() 594 mCarWatchdogDaemonHelper.notifySystemStateChange( in registerMonitorToWatchdogDaemon()
|
/aosp12/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/ |
H A D | CarWatchdogServiceUnitTest.java | 379 verify(mMockCarWatchdogDaemon).notifySystemStateChange(StateType.GARAGE_MODE, in testGarageModeStateChangeToOn() 390 verify(mMockCarWatchdogDaemon, times(2)).notifySystemStateChange(StateType.GARAGE_MODE, in testGarageModeStateChangeToOff() 408 verify(mMockCarWatchdogDaemon).notifySystemStateChange(StateType.USER_STATE, 101, in testWatchdogDaemonRestart() 410 verify(mMockCarWatchdogDaemon).notifySystemStateChange(StateType.USER_STATE, 102, in testWatchdogDaemonRestart() 412 verify(mMockCarWatchdogDaemon).notifySystemStateChange(StateType.POWER_CYCLE, in testWatchdogDaemonRestart() 414 verify(mMockCarWatchdogDaemon).notifySystemStateChange(StateType.GARAGE_MODE, in testWatchdogDaemonRestart() 424 verify(mMockCarWatchdogDaemon).notifySystemStateChange(StateType.USER_STATE, 100, in testUserRemovedBroadcast() 3698 verify(mMockCarWatchdogDaemon, atLeastOnce()).notifySystemStateChange( in captureAndVerifyRegistrationWithDaemon()
|