/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/ |
H A D | bundlemgrproxy_fuzzer.cpp | 261 std::vector<SharedBundleInfo> sharedBundles; in DoSomethingInterestingWithMyAPI() local 262 bundleMgrProxy.GetAllSharedBundleInfo(sharedBundles); in DoSomethingInterestingWithMyAPI() 263 bundleMgrProxy.GetSharedBundleInfo(bundleName, moduleName, sharedBundles); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/ |
H A D | bms_bundle_permission_false_test.cpp | 1010 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 1011 ErrCode ret = bundleMgrHostImpl_->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F() 1023 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 1024 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfo(BUNDLE_NAME, MOUDLE_NAME, sharedBundles); in HWTEST_F()
|
H A D | bms_bundle_permission_system_app_test.cpp | 766 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 767 ErrCode ret = bundleMgrHostImpl_->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F() 779 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 780 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfo(BUNDLE_NAME, MOUDLE_NAME, sharedBundles); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_interface.h | 1322 virtual ErrCode GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) in GetAllSharedBundleInfo() argument 1328 std::vector<SharedBundleInfo> &sharedBundles) in GetSharedBundleInfo() 1327 GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, std::vector<SharedBundleInfo> &sharedBundles) GetSharedBundleInfo() argument
|
H A D | bundle_mgr_proxy.h | 907 virtual ErrCode GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) override; 909 std::vector<SharedBundleInfo> &sharedBundles) override;
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_hsp_test/ |
H A D | bms_bundle_shared_library_install_test.cpp | 839 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 840 ErrCode res = GetBundleDataMgr()->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/common/ |
H A D | common_func.h | 176 const std::vector<SharedBundleInfo> &sharedBundles);
|
H A D | common_func.cpp | 2295 const std::vector<SharedBundleInfo> &sharedBundles) in ConvertAllSharedBundleInfo() 2297 if (sharedBundles.empty()) { in ConvertAllSharedBundleInfo() 2298 APP_LOGD("sharedBundles is empty"); in ConvertAllSharedBundleInfo() 2302 for (const auto &item : sharedBundles) { in ConvertAllSharedBundleInfo() 2294 ConvertAllSharedBundleInfo(napi_env env, napi_value value, const std::vector<SharedBundleInfo> &sharedBundles) ConvertAllSharedBundleInfo() argument
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_mgr_host_impl.h | 894 virtual ErrCode GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) override; 896 std::vector<SharedBundleInfo> &sharedBundles) override;
|
H A D | bundle_data_mgr.h | 860 ErrCode GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) const; 863 std::vector<SharedBundleInfo> &sharedBundles);
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundle_manager/ |
H A D | bundle_manager.h | 253 std::vector<SharedBundleInfo> sharedBundles; member
|
H A D | bundle_manager.cpp | 4060 static ErrCode InnerGetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) in InnerGetAllSharedBundleInfo() argument 4067 ErrCode ret = iBundleMgr->GetAllSharedBundleInfo(sharedBundles); in InnerGetAllSharedBundleInfo() 4078 asyncCallbackInfo->err = InnerGetAllSharedBundleInfo(asyncCallbackInfo->sharedBundles); in GetAllSharedBundleInfoExec() 4094 CommonFunc::ConvertAllSharedBundleInfo(env, result[ARGS_POS_ONE], asyncCallbackInfo->sharedBundles); in GetAllSharedBundleInfoComplete() 4144 std::vector<SharedBundleInfo> &sharedBundles) in InnerGetSharedBundleInfo() 4151 ErrCode ret = iBundleMgr->GetSharedBundleInfo(bundleName, moduleName, sharedBundles); in InnerGetSharedBundleInfo() 4163 asyncCallbackInfo->sharedBundles); in GetSharedBundleInfoExec() 4179 CommonFunc::ConvertAllSharedBundleInfo(env, result[ARGS_POS_ONE], asyncCallbackInfo->sharedBundles); in GetSharedBundleInfoComplete() 4143 InnerGetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, std::vector<SharedBundleInfo> &sharedBundles) InnerGetSharedBundleInfo() argument
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 3354 ErrCode BundleMgrHostImpl::GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) in GetAllSharedBundleInfo() argument 3371 return dataMgr->GetAllSharedBundleInfo(sharedBundles); in GetAllSharedBundleInfo() 3375 std::vector<SharedBundleInfo> &sharedBundles) in GetSharedBundleInfo() 3394 return dataMgr->GetSharedBundleInfo(bundleName, moduleName, sharedBundles); in GetSharedBundleInfo() 3374 GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, std::vector<SharedBundleInfo> &sharedBundles) GetSharedBundleInfo() argument
|
H A D | bundle_data_mgr.cpp | 6634 ErrCode BundleDataMgr::GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) const in GetAllSharedBundleInfo() 6645 sharedBundles.emplace_back(sharedBundleInfo); in GetAllSharedBundleInfo() 6652 std::vector<SharedBundleInfo> &sharedBundles) in GetSharedBundleInfo() 6676 sharedBundles.emplace_back(sharedBundleInfo); in GetSharedBundleInfo() 6651 GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, std::vector<SharedBundleInfo> &sharedBundles) GetSharedBundleInfo() argument
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_proxy.cpp | 3719 ErrCode BundleMgrProxy::GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) in GetAllSharedBundleInfo() argument 3730 data, sharedBundles); in GetAllSharedBundleInfo() 3734 std::vector<SharedBundleInfo> &sharedBundles) in GetSharedBundleInfo() 3752 data, sharedBundles); in GetSharedBundleInfo() 3733 GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, std::vector<SharedBundleInfo> &sharedBundles) GetSharedBundleInfo() argument
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/ |
H A D | bms_bundle_data_mgr_test.cpp | 3016 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 3017 auto ret = GetBundleDataMgr()->GetSharedBundleInfo(BUNDLE_TEST3, BUNDLE_TEST3, sharedBundles); in HWTEST_F() 3070 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 3071 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfo("", "", sharedBundles); in HWTEST_F() 4163 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 4164 ErrCode ret = bundleMgrHostImpl_->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F()
|
H A D | bms_bundle_kit_service_test.cpp | 12183 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 12184 auto ret = GetBundleDataMgr()->GetSharedBundleInfo("", "", sharedBundles); in HWTEST_F() 12187 ret = GetBundleDataMgr()->GetSharedBundleInfo(BUNDLE_NAME_TEST, MODULE_NAME_TEST, sharedBundles); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/ |
H A D | bms_bundle_manager_test.cpp | 2493 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 2522 retCode = hostImpl->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F() 2525 retCode = hostImpl->GetSharedBundleInfo("", "", sharedBundles); in HWTEST_F() 4852 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 4853 ErrCode testRet = GetBundleDataMgr()->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/ |
H A D | acts_bms_kit_system_test.cpp | 8109 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 8110 ErrCode ret = bundleMgrProxy->GetAllSharedBundleInfo(sharedBundles); in HWTEST_F() 8165 std::vector<SharedBundleInfo> sharedBundles; in HWTEST_F() local 8167 BASE_BUNDLE_NAME, BASE_MODULE_NAME, sharedBundles); in HWTEST_F()
|