Home
last modified time | relevance | path

Searched refs:processStateHandlerMap_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/source/schedule/
H A Dsystem_ability_state_machine.cpp37processStateHandlerMap_[SystemProcessState::NOT_STARTED] = std::make_shared<NotStartedStateHandler… in InitStateHandlerMap()
38processStateHandlerMap_[SystemProcessState::STARTED] = std::make_shared<StartedStateHandler>(liste… in InitStateHandlerMap()
39processStateHandlerMap_[SystemProcessState::STOPPING] = std::make_shared<StoppingStateHandler>(lis… in InitStateHandlerMap()
110 if (processStateHandlerMap_.count(nextState) == 0) { in ProcessStateTransitionLocked()
114 std::shared_ptr<SystemProcessStateHandler> handler = processStateHandlerMap_[nextState]; in ProcessStateTransitionLocked()
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Dsystem_ability_state_machine_test.cpp341 systemAbilityStateMachine->processStateHandlerMap_.clear();
362 systemAbilityStateMachine->processStateHandlerMap_.clear();
363 systemAbilityStateMachine->processStateHandlerMap_[SystemProcessState::NOT_STARTED] = nullptr;
389 systemAbilityStateMachine->processStateHandlerMap_.clear();
390 …systemAbilityStateMachine->processStateHandlerMap_[SystemProcessState::NOT_STARTED] = notStartedSt…
416 systemAbilityStateMachine->processStateHandlerMap_.clear();
417 …systemAbilityStateMachine->processStateHandlerMap_[SystemProcessState::NOT_STARTED] = startedState…
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/include/schedule/
H A Dsystem_ability_state_machine.h125 … std::map<SystemProcessState, std::shared_ptr<SystemProcessStateHandler>> processStateHandlerMap_; variable