Home
last modified time | relevance | path

Searched refs:preInstallBundleInfos (Results 1 - 14 of 14) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dpreinstall_data_storage_rdb.cpp39 std::vector<PreInstallBundleInfo> &preInstallBundleInfos) in LoadAllPreInstallBundleInfos()
53 TransformStrToInfo(datas, preInstallBundleInfos); in LoadAllPreInstallBundleInfos()
54 return !preInstallBundleInfos.empty(); in LoadAllPreInstallBundleInfos()
59 std::vector<PreInstallBundleInfo> &preInstallBundleInfos) in TransformStrToInfo()
83 preInstallBundleInfos.emplace_back(preInstallBundleInfo); in TransformStrToInfo()
38 LoadAllPreInstallBundleInfos( std::vector<PreInstallBundleInfo> &preInstallBundleInfos) LoadAllPreInstallBundleInfos() argument
57 TransformStrToInfo( const std::map<std::string, std::string> &datas, std::vector<PreInstallBundleInfo> &preInstallBundleInfos) TransformStrToInfo() argument
H A Dbundle_user_mgr_host_impl.cpp142 std::set<PreInstallBundleInfo> preInstallBundleInfos; in OnCreateNewUser() local
143 if (!GetAllPreInstallBundleInfos(disallowList, userId, preInstallBundleInfos)) { in OnCreateNewUser()
147 GetAllDriverBundleInfos(preInstallBundleInfos); in OnCreateNewUser()
150 int32_t totalHapNum = static_cast<int32_t>(preInstallBundleInfos.size()); in OnCreateNewUser()
154 for (const auto &info : preInstallBundleInfos) { in OnCreateNewUser()
180 std::set<PreInstallBundleInfo> &preInstallBundleInfos) in GetAllPreInstallBundleInfos()
206 preInstallBundleInfos.insert(preInfo); in GetAllPreInstallBundleInfos()
209 return !preInstallBundleInfos.empty(); in GetAllPreInstallBundleInfos()
212 void BundleUserMgrHostImpl::GetAllDriverBundleInfos(std::set<PreInstallBundleInfo> &preInstallBundleInfos) in GetAllDriverBundleInfos() argument
225 preInstallBundleInfos in GetAllDriverBundleInfos()
177 GetAllPreInstallBundleInfos( const std::vector<std::string> &disallowList, int32_t userId, std::set<PreInstallBundleInfo> &preInstallBundleInfos) GetAllPreInstallBundleInfos() argument
[all...]
H A Dbundle_mgr_service_event_handler.cpp1258 std::vector<PreInstallBundleInfo> preInstallBundleInfos = dataMgr->GetAllPreInstallBundleInfos(); in InnerProcessCheckPreinstallData() local
1259 for (auto &preInstallBundleInfo : preInstallBundleInfos) { in InnerProcessCheckPreinstallData()
1484 std::vector<PreInstallBundleInfo> preInstallBundleInfos = dataMgr->GetAllPreInstallBundleInfos(); in InnerProcessCheckRecoverableApplicationInfo() local
1485 for (auto &preInstallBundleInfo : preInstallBundleInfos) { in InnerProcessCheckRecoverableApplicationInfo()
1620 std::vector<PreInstallBundleInfo> preInstallBundleInfos = dataMgr->GetAllPreInstallBundleInfos(); in LoadAllPreInstallBundleInfos() local
1621 for (auto &iter : preInstallBundleInfos) { in LoadAllPreInstallBundleInfos()
1622 LOG_D(BMS_TAG_DEFAULT, "load preInstallBundleInfos: %{public}s ", iter.GetBundleName().c_str()); in LoadAllPreInstallBundleInfos()
1627 return !preInstallBundleInfos.empty(); in LoadAllPreInstallBundleInfos()
H A Dbundle_data_mgr.cpp3496 std::vector<PreInstallBundleInfo> preInstallBundleInfos = GetAllPreInstallBundleInfos(); in GetRecoverablePreInstallBundleInfos() local
3497 for (auto preInstallBundleInfo: preInstallBundleInfos) { in GetRecoverablePreInstallBundleInfos()
4986 bool BundleDataMgr::LoadAllPreInstallBundleInfos(std::vector<PreInstallBundleInfo> &preInstallBundleInfos) in LoadAllPreInstallBundleInfos() argument
4993 if (preInstallDataStorage_->LoadAllPreInstallBundleInfos(preInstallBundleInfos)) { in LoadAllPreInstallBundleInfos()
6153 std::vector<PreInstallBundleInfo> preInstallBundleInfos; in GetAllPreInstallBundleInfos() local
6154 LoadAllPreInstallBundleInfos(preInstallBundleInfos); in GetAllPreInstallBundleInfos()
6155 return preInstallBundleInfos; in GetAllPreInstallBundleInfos()
H A Dbundle_mgr_host_impl.cpp4015 std::vector<PreInstallBundleInfo> preInstallBundleInfos = dataMgr->GetAllPreInstallBundleInfos(); in GetAllPreinstalledApplicationInfos() local
4016 for (auto &preInstallBundleInfo: preInstallBundleInfos) { in GetAllPreinstalledApplicationInfos()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dpreinstall_data_storage_rdb.h32 bool LoadAllPreInstallBundleInfos(std::vector<PreInstallBundleInfo> &preInstallBundleInfos) override;
40 std::vector<PreInstallBundleInfo> &preInstallBundleInfos);
H A Dbundle_user_mgr_host_impl.h60 std::set<PreInstallBundleInfo> &preInstallBundleInfos);
62 void GetAllDriverBundleInfos(std::set<PreInstallBundleInfo> &preInstallBundleInfos);
H A Dpreinstall_data_storage_interface.h35 * @param preInstallBundleInfos Indicates information about the PreInstallBundleInfo.
38 virtual bool LoadAllPreInstallBundleInfos(std::vector<PreInstallBundleInfo> &preInstallBundleInfos) = 0;
47 * @param preInstallBundleInfos Indicates information about the PreInstallBundleInfo.
H A Dbundle_data_mgr.h593 bool LoadAllPreInstallBundleInfos(std::vector<PreInstallBundleInfo> &preInstallBundleInfos);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/
H A Dbundle_mgr_service_event_handler.cpp451 std::vector<PreInstallBundleInfo> preInstallBundleInfos = dataMgr->GetAllPreInstallBundleInfos(); in LoadAllPreInstallBundleInfos() local
452 for (auto const & iter : preInstallBundleInfos) { in LoadAllPreInstallBundleInfos()
456 return !preInstallBundleInfos.empty(); in LoadAllPreInstallBundleInfos()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_rdb_data_manager_test/
H A Dbms_rdb_data_manager_test.cpp379 std::vector<PreInstallBundleInfo> preInstallBundleInfos; in HWTEST_F() local
380 ret = preInstallDataStorage->LoadAllPreInstallBundleInfos(preInstallBundleInfos); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/
H A Dbms_bundle_manager_test.cpp4468 std::vector<PreInstallBundleInfo> preInstallBundleInfos; in HWTEST_F() local
4469 ret = dataMgr->LoadAllPreInstallBundleInfos(preInstallBundleInfos); in HWTEST_F()
6005 std::vector<PreInstallBundleInfo> preInstallBundleInfos; in HWTEST_F() local
6009 bool ret = preInstallDataStorage->LoadAllPreInstallBundleInfos(preInstallBundleInfos); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/
H A Dbms_bundle_data_mgr_test.cpp4813 std::set<PreInstallBundleInfo> preInstallBundleInfos; in HWTEST_F() local
4814 auto res = bundleUserMgrHostImpl_->GetAllPreInstallBundleInfos(disallowList, USERID, preInstallBundleInfos); in HWTEST_F()
4819 res = bundleUserMgrHostImpl_->GetAllPreInstallBundleInfos(disallowList, USERID, preInstallBundleInfos); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/
H A Dbms_bundle_installer_test.cpp6838 std::set<PreInstallBundleInfo> preInstallBundleInfos; in HWTEST_F() local
6849 bool ret = host.GetAllPreInstallBundleInfos(disallowList, userId, preInstallBundleInfos); in HWTEST_F()

Completed in 72 milliseconds