Home
last modified time | relevance | path

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

/ohos5.0/base/update/updateservice/interfaces/inner_api/modulemgr/include/
H A Dupdate_service_module.h38 using LifeCycleFuncType = void (*)(const OHOS::SystemAbilityOnDemandReason &reason); variable
43 void RegisterOnStartOnStopFunc(std::string phase, LifeCycleFuncType handlePhase);
H A Dmodule_manager.h44 void HookOnStartOnStopFunc(std::string phase, LifeCycleFuncType handleSAOnStartOnStop);
53 static std::map<std::string, LifeCycleFuncType> onStartOnStopFuncMap_;
/ohos5.0/base/update/updateservice/interfaces/inner_api/modulemgr/src/
H A Dmodule_manager.cpp27 std::map<std::string, LifeCycleFuncType> ModuleManager::onStartOnStopFuncMap_;
110 void ModuleManager::HookOnStartOnStopFunc(std::string phase, LifeCycleFuncType handleSAOnStartOnSto… in HookOnStartOnStopFunc()
129 ((LifeCycleFuncType)onStartOnStopFuncMap_[phase])(reason); in HandleOnStartOnStopFunc()
H A Dupdate_service_module.cpp30 void RegisterOnStartOnStopFunc(std::string phase, LifeCycleFuncType handlePhase) in RegisterOnStartOnStopFunc()