/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | preinstall_data_storage_rdb.cpp | 39 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 D | bundle_user_mgr_host_impl.cpp | 142 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 D | bundle_mgr_service_event_handler.cpp | 1258 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 D | bundle_data_mgr.cpp | 3496 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 D | bundle_mgr_host_impl.cpp | 4015 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 D | preinstall_data_storage_rdb.h | 32 bool LoadAllPreInstallBundleInfos(std::vector<PreInstallBundleInfo> &preInstallBundleInfos) override; 40 std::vector<PreInstallBundleInfo> &preInstallBundleInfos);
|
H A D | bundle_user_mgr_host_impl.h | 60 std::set<PreInstallBundleInfo> &preInstallBundleInfos); 62 void GetAllDriverBundleInfos(std::set<PreInstallBundleInfo> &preInstallBundleInfos);
|
H A D | preinstall_data_storage_interface.h | 35 * @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 D | bundle_data_mgr.h | 593 bool LoadAllPreInstallBundleInfos(std::vector<PreInstallBundleInfo> &preInstallBundleInfos);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/mock/src/ |
H A D | bundle_mgr_service_event_handler.cpp | 451 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 D | bms_rdb_data_manager_test.cpp | 379 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 D | bms_bundle_manager_test.cpp | 4468 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 D | bms_bundle_data_mgr_test.cpp | 4813 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 D | bms_bundle_installer_test.cpp | 6838 std::set<PreInstallBundleInfo> preInstallBundleInfos; in HWTEST_F() local 6849 bool ret = host.GetAllPreInstallBundleInfos(disallowList, userId, preInstallBundleInfos); in HWTEST_F()
|