Home
last modified time | relevance | path

Searched refs:notifySystemStateChange (Results 1 – 17 of 17) sorted by relevance

/aosp12/packages/services/Car/cpp/watchdog/server/tests/
H A DWatchdogInternalHandlerTest.cpp300 ->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 DWatchdogBinderMediatorTest.cpp356 Status status = mWatchdogBinderMediator->notifySystemStateChange(StateType::POWER_CYCLE, 0, 0); in TEST_F()
/aosp12/packages/services/Car/service/src/com/android/car/watchdog/
H A DCarWatchdogService.java153 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 DCarWatchdogDaemonHelper.java251 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 DICarWatchdog.aidl105 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 DCarWatchdogDaemonHelperTest.java155 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 DICarWatchdog.aidl30 …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 DICarWatchdog.aidl30 …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 DICarWatchdog.aidl134 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 DICarWatchdog.aidl67 …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 DICarWatchdog.aidl67 …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 DWatchdogInternalHandler.h81 android::binder::Status notifySystemStateChange(
H A DWatchdogBinderMediator.h98 android::binder::Status notifySystemStateChange(StateType type, int32_t arg1,
H A DWatchdogInternalHandler.cpp160 Status WatchdogInternalHandler::notifySystemStateChange(aawi::StateType type, int32_t arg1, in notifySystemStateChange() function in android::automotive::watchdog::WatchdogInternalHandler
H A DWatchdogBinderMediator.cpp320 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 DCarServiceHelperService.java191 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 DCarWatchdogServiceUnitTest.java379 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()