Home
last modified time | relevance | path

Searched refs:sharedBundles (Results 1 - 19 of 19) sorted by relevance

/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/
H A Dbundlemgrproxy_fuzzer.cpp261 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 Dbms_bundle_permission_false_test.cpp1010 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 Dbms_bundle_permission_system_app_test.cpp766 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 Dbundle_mgr_interface.h1322 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 Dbundle_mgr_proxy.h907 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 Dbms_bundle_shared_library_install_test.cpp839 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 Dcommon_func.h176 const std::vector<SharedBundleInfo> &sharedBundles);
H A Dcommon_func.cpp2295 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 Dbundle_mgr_host_impl.h894 virtual ErrCode GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) override;
896 std::vector<SharedBundleInfo> &sharedBundles) override;
H A Dbundle_data_mgr.h860 ErrCode GetAllSharedBundleInfo(std::vector<SharedBundleInfo> &sharedBundles) const;
863 std::vector<SharedBundleInfo> &sharedBundles);
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundle_manager/
H A Dbundle_manager.h253 std::vector<SharedBundleInfo> sharedBundles; member
H A Dbundle_manager.cpp4060 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 Dbundle_mgr_host_impl.cpp3354 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 Dbundle_data_mgr.cpp6634 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 Dbundle_mgr_proxy.cpp3719 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 Dbms_bundle_data_mgr_test.cpp3016 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 Dbms_bundle_kit_service_test.cpp12183 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 Dbms_bundle_manager_test.cpp2493 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 Dacts_bms_kit_system_test.cpp8109 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()

Completed in 122 milliseconds