Home
last modified time | relevance | path

Searched refs:saId (Results 1 - 25 of 50) sorted by relevance

12

/base/update/sys_installer/services/module_update/service/src/
H A Dmodule_update_consumer.cpp50 void ModuleUpdateConsumer::DoRevert(const std::string &hmpName, int32_t saId) in DoRevert() argument
52 LOG(INFO) << "hmp package revert,hmp name=" << hmpName << "; said=" << saId; in DoRevert() local
61 void ModuleUpdateConsumer::DoUnload(const std::string &hmpName, int32_t saId) in DoUnload() argument
63 LOG(INFO) << "hmp package unload,hmp name=" << hmpName << "; said=" << saId; in DoUnload() local
67 if (IsRunning(saId)) { in DoUnload()
68 LOG(INFO) << "sa is running, saId=" << saId; in DoUnload()
95 int32_t saId = saStatusPair.first; in Run() local
97 auto it = saIdHmpMap_.find(saId); in Run()
99 LOG(ERROR) << "find hmp fail, saId in Run()
[all...]
H A Dmodule_update_producer.cpp50 int32_t saId = it.first; in AddAbnormalSa() local
51 std::string attr = std::string(SA_START_PREFIX) + "." + std::to_string(saId); in AddAbnormalSa()
58 LOG(INFO) << "add abnormal sa=" << saId << "; status=" << saStatus; in AddAbnormalSa()
59 std::pair<int32_t, std::string> saStatusPair = std::make_pair(saId, saStatus); in AddAbnormalSa()
68 IsHotSa(saId))) { in AddAbnormalSa()
/base/useriam/user_auth_framework/frameworks/native/client/src/
H A Dipc_client_utils.cpp26 sptr<IRemoteObject> IpcClientUtils::GetRemoteObject(int32_t saId) in GetRemoteObject() argument
35 obj = sam->CheckSystemAbility(saId); in GetRemoteObject()
/base/security/security_component_manager/services/security_component_service/sa/test/mock/include/
H A Dmock_system_ability_proxy.h33 sptr<MockIRemoteObject> GetSystemAbility(int32_t saId) in GetSystemAbility() argument
39 int32_t UnloadSystemAbility(int32_t saId) in UnloadSystemAbility() argument
/base/update/sys_installer/services/module_update/service/include/
H A Dmodule_update_consumer.h37 void DoRevert(const std::string &hmpName, int32_t saId);
38 void DoUnload(const std::string &hmpName, int32_t saId);
/base/security/device_security_level/services/sa/standard/
H A Ddslm_service.cpp35 DslmService::DslmService(int32_t saId, bool runOnCreate) : SystemAbility(saId, runOnCreate), IRemoteStub(true) in DslmService() argument
H A Ddslm_service.h40 explicit DslmService(int32_t saId, bool runOnCreate);
/base/location/services/location_locator/locator/source/
H A Dsubability_common.cpp142 int saId = CommonUtils::AbilityConvertToId(name_); in Enable() local
144 if (sam->CheckSystemAbility(saId) == nullptr) { in Enable()
145 sam->AddSystemAbility(saId, ability, ISystemAbilityManager::SAExtraProp(true, 1, capability_, u"")); in Enable()
149 if (sam->CheckSystemAbility(saId) != nullptr) { in Enable()
150 sam->RemoveSystemAbility(saId); in Enable()
/base/useriam/user_auth_framework/frameworks/native/client/inc/
H A Dipc_client_utils.h26 static sptr<IRemoteObject> GetRemoteObject(int32_t saId);
/base/useriam/user_auth_framework/test/unittest/inner_api/mocks/
H A Dmock_ipc_client_utils.cpp22 sptr<IRemoteObject> IpcClientUtils::GetRemoteObject(int32_t saId) in GetRemoteObject() argument
H A Dmock_ipc_client_utils.h26 static sptr<IRemoteObject> GetRemoteObject(int32_t saId);
/base/global/i18n/services/src/
H A Di18n_service_ability.cpp35 I18nServiceAbility::I18nServiceAbility(int32_t saId, bool runOnCreate) : SystemAbility(saId, runOnCreate) in I18nServiceAbility() argument
/base/update/sys_installer/services/module_update/util/include/
H A Dmodule_utils.h39 bool IsHotSa(int32_t saId);
40 bool IsRunning(int32_t saId);
/base/global/i18n/services/include/
H A Di18n_service_ability.h31 I18nServiceAbility(int32_t saId, bool runOnCreate);
/base/security/security_guard/test/unittest/risk_classify/include/
H A Drisk_analysis_manager_service.h29 RiskAnalysisManagerService(int32_t saId, bool runOnCreate);
/base/security/security_guard/services/risk_classify/include/
H A Drisk_analysis_manager_service.h29 RiskAnalysisManagerService(int32_t saId, bool runOnCreate);
/base/update/sys_installer/services/module_update/util/src/
H A Dmodule_utils.cpp248 bool IsHotSa(int32_t saId) in IsHotSa() argument
261 if (find(onDemandSaIds.begin(), onDemandSaIds.end(), saId) == onDemandSaIds.end()) { in IsHotSa()
262 LOG(INFO) << "this is not an ondemand sa, saId=" << saId; in IsHotSa()
268 bool IsRunning(int32_t saId) in IsRunning() argument
275 auto object = samgr->CheckSystemAbility(saId); in IsRunning()
277 LOG(INFO) << "sa not exists, saId=" << saId; in IsRunning()
H A Dmodule_ipc_helper.cpp39 info.saId = reply.ReadInt32(); in ReadSaInfo()
46 data.WriteInt32(info.saId); in WriteSaInfo()
H A Dmodule_file.cpp188 infoTmp.saId = static_cast<int32_t>(std::stoi(saInfoVec.at(1))); // 1:index of saId in ParseSaList()
269 saMap.emplace(info.saId, info); in CompareSaListVersion()
272 auto saIter = saMap.find(info.saId); in CompareSaListVersion()
274 LOG(ERROR) << info.saId << "not found when compare saList"; in CompareSaListVersion()
/base/security/huks/services/huks_standard/huks_service/main/os_dependency/sa/
H A Dhks_sa.h48 HksService(int saId, bool runOnCreate);
/base/security/security_guard/services/risk_classify/src/
H A Drisk_analysis_manager_service.cpp54 RiskAnalysisManagerService::RiskAnalysisManagerService(int32_t saId, bool runOnCreate) in RiskAnalysisManagerService() argument
55 : SystemAbility(saId, runOnCreate) in RiskAnalysisManagerService()
/base/security/security_guard/services/security_collector/include/
H A Dsecurity_collector_manager_service.h40 SecurityCollectorManagerService(int32_t saId, bool runOnCreate);
/base/security/security_guard/test/unittest/security_collector/include/
H A Dsecurity_collector_manager_service.h40 SecurityCollectorManagerService(int32_t saId, bool runOnCreate);
/base/security/security_component_manager/services/security_component_service/sa/sa_main/
H A Dsec_comp_service.h38 SecCompService(int32_t saId, bool runOnCreate);
/base/web/webview/sa/include/
H A Dapp_fwk_update_service.h48 AppFwkUpdateService(int32_t saId, bool runOnCreate);

Completed in 9 milliseconds

12