Home
last modified time | relevance | path

Searched refs:abilityStateHandlerMap_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/source/schedule/
H A Dsystem_ability_state_machine.cpp31abilityStateHandlerMap_[SystemAbilityState::NOT_LOADED] = std::make_shared<NotLoadedStateHandler>(… in InitStateHandlerMap()
32abilityStateHandlerMap_[SystemAbilityState::LOADING] = std::make_shared<LoadingStateHandler>(liste… in InitStateHandlerMap()
33abilityStateHandlerMap_[SystemAbilityState::LOADED] = std::make_shared<LoadedStateHandler>(listene… in InitStateHandlerMap()
34abilityStateHandlerMap_[SystemAbilityState::UNLOADABLE] = std::make_shared<UnloadableStateHandler>… in InitStateHandlerMap()
35abilityStateHandlerMap_[SystemAbilityState::UNLOADING] = std::make_shared<UnloadingStateHandler>(l… in InitStateHandlerMap()
49 if (abilityStateHandlerMap_.count(nextState) == 0) { in AbilityStateTransitionLocked()
53 std::shared_ptr<SystemAbilityStateHandler> handler = abilityStateHandlerMap_[nextState]; in AbilityStateTransitionLocked()
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Dsystem_ability_state_machine_test.cpp121 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
142 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
143 systemAbilityStateMachine->abilityStateHandlerMap_[SystemAbilityState::NOT_LOADED] = nullptr;
169 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
170 …systemAbilityStateMachine->abilityStateHandlerMap_[SystemAbilityState::NOT_LOADED] = notLoadedStat…
196 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
197 …systemAbilityStateMachine->abilityStateHandlerMap_[SystemAbilityState::NOT_LOADED] = notLoadedStat…
H A Dsystem_ability_event_handler_test.cpp235 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
323 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
347 systemAbilityStateMachine->abilityStateHandlerMap_.clear();
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/include/schedule/
H A Dsystem_ability_state_machine.h124 … std::map<SystemAbilityState, std::shared_ptr<SystemAbilityStateHandler>> abilityStateHandlerMap_; variable