/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundle_manager/ |
H A D | native_module.cpp | 152 DECLARE_NAPI_FUNCTION("getSharedBundleInfo", GetSharedBundleInfo), in BundleManagerExport()
|
H A D | bundle_manager.h | 319 napi_value GetSharedBundleInfo(napi_env env, napi_callback_info info);
|
H A D | bundle_manager.cpp | 4164 ErrCode ret = iBundleMgr->GetSharedBundleInfo(bundleName, moduleName, sharedBundles); in InnerGetSharedBundleInfo() 4200 napi_value GetSharedBundleInfo(napi_env env, napi_callback_info info) in GetSharedBundleInfo() function
|
/ohos5.0/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/ |
H A D | bundlemgrproxy_fuzzer.cpp | 263 bundleMgrProxy.GetSharedBundleInfo(bundleName, moduleName, sharedBundles); in DoSomethingInterestingWithMyAPI()
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_data_mgr.h | 861 ErrCode GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, 876 … ErrCode GetSharedBundleInfo(const std::string &bundleName, int32_t flags, BundleInfo &bundleInfo);
|
H A D | inner_bundle_info.h | 2162 bool GetSharedBundleInfo(SharedBundleInfo &sharedBundleInfo) const; 2167 bool GetSharedBundleInfo(int32_t flags, BundleInfo &bundleInfo) const;
|
H A D | bundle_mgr_host_impl.h | 895 … virtual ErrCode GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName,
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_interface.h | 1328 … virtual ErrCode GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName, in GetSharedBundleInfo() function
|
H A D | bundle_mgr_proxy.h | 908 … virtual ErrCode GetSharedBundleInfo(const std::string &bundleName, const std::string &moduleName,
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 344 … return dataMgr->GetSharedBundleInfo(sharedBundleName, bundleInfoFlags, sharedBundleInfo); in GetDependentBundleInfo() 358 … return dataMgr->GetSharedBundleInfo(sharedBundleName, bundleInfoFlags, sharedBundleInfo); in GetDependentBundleInfo() 3415 ErrCode BundleMgrHostImpl::GetSharedBundleInfo(const std::string &bundleName, const std::string &mo… in GetSharedBundleInfo() function in OHOS::AppExecFwk::BundleMgrHostImpl 3435 return dataMgr->GetSharedBundleInfo(bundleName, moduleName, sharedBundles); in GetSharedBundleInfo()
|
H A D | bundle_data_mgr.cpp | 6620 innerBundleInfo.GetSharedBundleInfo(sharedBundleInfo); in GetAllSharedBundleInfo() 6627 ErrCode BundleDataMgr::GetSharedBundleInfo(const std::string &bundleName, const std::string &module… in GetSharedBundleInfo() function in OHOS::AppExecFwk::BundleDataMgr 6674 innerBundleInfo.GetSharedBundleInfo(sharedBundleInfo); in GetSharedBundleInfoBySelf() 6748 ErrCode BundleDataMgr::GetSharedBundleInfo(const std::string &bundleName, int32_t flags, BundleInfo… in GetSharedBundleInfo() function in OHOS::AppExecFwk::BundleDataMgr 6762 innerBundleInfo.GetSharedBundleInfo(flags, bundleInfo); in GetSharedBundleInfo()
|
H A D | inner_bundle_info.cpp | 2132 bool InnerBundleInfo::GetSharedBundleInfo(SharedBundleInfo &sharedBundleInfo) const in GetSharedBundleInfo() function in OHOS::AppExecFwk::InnerBundleInfo 2493 bool InnerBundleInfo::GetSharedBundleInfo(int32_t flags, BundleInfo &bundleInfo) const in GetSharedBundleInfo() function in OHOS::AppExecFwk::InnerBundleInfo
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/ |
H A D | bms_bundle_permission_system_app_test.cpp | 754 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfo(BUNDLE_NAME, MOUDLE_NAME, sharedBundles);
|
H A D | bms_bundle_permission_false_test.cpp | 1024 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfo(BUNDLE_NAME, MOUDLE_NAME, sharedBundles);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/ |
H A D | bms_bundle_data_mgr_test.cpp | 2996 auto ret = GetBundleDataMgr()->GetSharedBundleInfo(BUNDLE_TEST3, BUNDLE_TEST3, sharedBundles); 3013 …ErrCode ret = GetBundleDataMgr()->GetSharedBundleInfo(BUNDLE_TEST1, GET_ABILITY_INFO_DEFAULT, bund… 3026 …ErrCode ret = GetBundleDataMgr()->GetSharedBundleInfo(BUNDLE_TEST1, GET_ABILITY_INFO_DEFAULT, bund… 3038 ErrCode ret = GetBundleDataMgr()->GetSharedBundleInfo("", GET_ABILITY_INFO_DEFAULT, bundleInfo); 3050 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfo("", "", sharedBundles);
|
H A D | bms_bundle_kit_service_test.cpp | 12045 bool ret = info.GetSharedBundleInfo(sharedBundleInfo); 12053 ret = info.GetSharedBundleInfo(sharedBundleInfo); 12067 auto ret = GetBundleDataMgr()->GetSharedBundleInfo("", "", sharedBundles); 12070 … ret = GetBundleDataMgr()->GetSharedBundleInfo(BUNDLE_NAME_TEST, MODULE_NAME_TEST, sharedBundles);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_host.cpp | 3200 ErrCode ret = GetSharedBundleInfo(bundleName, moduleName, infos); in HandleGetSharedBundleInfo()
|
H A D | bundle_mgr_proxy.cpp | 3700 ErrCode BundleMgrProxy::GetSharedBundleInfo(const std::string &bundleName, const std::string &modul… in GetSharedBundleInfo() function in OHOS::AppExecFwk::BundleMgrProxy
|
/ohos5.0/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/ |
H A D | bms_bundle_manager_test.cpp | 2526 retCode = hostImpl->GetSharedBundleInfo("", "", sharedBundles);
|
/ohos5.0/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/ |
H A D | acts_bms_kit_system_test.cpp | 8114 ErrCode ret = bundleMgrProxy->GetSharedBundleInfo(
|