Home
last modified time | relevance | path

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

/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/
H A Dbundlemgrproxy_fuzzer.cpp265 bundleMgrProxy.GetSharedBundleInfoBySelf(bundleName, sharedBundleInfo); in DoSomethingInterestingWithMyAPI()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/
H A Dbundle_mgr_interface.h1333 virtual ErrCode GetSharedBundleInfoBySelf(const std::string &bundleName, SharedBundleInfo &sharedBundleInfo) in GetSharedBundleInfoBySelf() function in OHOS::AppExecFwk::IBundleMgr
H A Dbundle_mgr_proxy.h937 virtual ErrCode GetSharedBundleInfoBySelf(const std::string &bundleName,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_hsp_test/
H A Dbms_bundle_shared_library_install_test.cpp676 * @tc.name: test GetSharedBundleInfoBySelf
687 ErrCode res = GetBundleDataMgr()->GetSharedBundleInfoBySelf( in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dbundle_mgr_host_impl.h897 virtual ErrCode GetSharedBundleInfoBySelf(const std::string &bundleName,
H A Dbundle_data_mgr.h867 ErrCode GetSharedBundleInfoBySelf(const std::string &bundleName, SharedBundleInfo &sharedBundleInfo);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/
H A Dbms_bundle_permission_system_app_test.cpp1245 * @tc.name: test GetSharedBundleInfoBySelf of BundleMgrHostImpl
1247 * 2. GetSharedBundleInfoBySelf false by no permission
1252 ErrCode ret = bundleMgrHostImpl_->GetSharedBundleInfoBySelf(BUNDLE_NAME, sharedBundleInfo); in HWTEST_F()
/foundation/bundlemanager/bundle_tool/frameworks/src/
H A Dbundle_command.cpp2560 ErrCode ret = bundleMgrProxy_->GetSharedBundleInfoBySelf(bundleName, sharedBundleInfo); in DumpShared()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_mgr_host_impl.cpp55 const std::string FUNCATION_GET_SHARED_BUNDLE_INFO_BY_SELF = "BundleMgrHostImpl::GetSharedBundleInfoBySelf";
3397 ErrCode BundleMgrHostImpl::GetSharedBundleInfoBySelf(const std::string &bundleName, in GetSharedBundleInfoBySelf() function in OHOS::AppExecFwk::BundleMgrHostImpl
3400 APP_LOGD("begin to GetSharedBundleInfoBySelf bundleName: %{public}s", bundleName.c_str()); in GetSharedBundleInfoBySelf()
3419 return dataMgr->GetSharedBundleInfoBySelf(bundleName, sharedBundleInfo); in GetSharedBundleInfoBySelf()
H A Dbundle_data_mgr.cpp6670 errCode = GetSharedBundleInfoBySelf(dep.bundleName, sharedBundleInfo); in GetSharedBundleInfo()
6672 APP_LOGD("GetSharedBundleInfoBySelf failed errCode is %{public}d, bundleName:%{public}s", in GetSharedBundleInfo()
6682 ErrCode BundleDataMgr::GetSharedBundleInfoBySelf(const std::string &bundleName, SharedBundleInfo &sharedBundleInfo) in GetSharedBundleInfoBySelf() function in OHOS::AppExecFwk::BundleDataMgr
6684 APP_LOGD("GetSharedBundleInfoBySelf bundleName: %{public}s", bundleName.c_str()); in GetSharedBundleInfoBySelf()
6688 APP_LOGW("GetSharedBundleInfoBySelf failed, can not find bundle %{public}s", in GetSharedBundleInfoBySelf()
6694 APP_LOGW("GetSharedBundleInfoBySelf failed, the bundle(%{public}s) is not shared library", in GetSharedBundleInfoBySelf()
6699 APP_LOGD("GetSharedBundleInfoBySelf(%{public}s) successfully)", bundleName.c_str()); in GetSharedBundleInfoBySelf()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/
H A Dbms_bundle_kit_service_test.cpp12118 * @tc.name: Test GetSharedBundleInfoBySelf
12119 * @tc.desc: Test GetSharedBundleInfoBySelf with BundleMgrProxy
12131 auto ret = bundleMgrProxy->GetSharedBundleInfoBySelf("", sharedBundleInfo); in HWTEST_F()
12133 ret = bundleMgrProxy->GetSharedBundleInfoBySelf(BUNDLE_NAME_TEST, sharedBundleInfo); in HWTEST_F()
12138 ret = dataMgr->GetSharedBundleInfoBySelf("", sharedBundleInfo); in HWTEST_F()
12143 ret = dataMgr->GetSharedBundleInfoBySelf(BUNDLE_NAME_TEST, sharedBundleInfo); in HWTEST_F()
12147 ret = hostImpl->GetSharedBundleInfoBySelf(BUNDLE_NAME_TEST, sharedBundleInfo); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_host.cpp3205 ErrCode ret = GetSharedBundleInfoBySelf(bundleName, shareBundleInfo); in HandleGetSharedBundleInfoBySelf()
H A Dbundle_mgr_proxy.cpp3755 ErrCode BundleMgrProxy::GetSharedBundleInfoBySelf(const std::string &bundleName, SharedBundleInfo &sharedBundleInfo) in GetSharedBundleInfoBySelf() function in OHOS::AppExecFwk::BundleMgrProxy
3758 APP_LOGD("begin to GetSharedBundleInfoBySelf"); in GetSharedBundleInfoBySelf()
3761 APP_LOGE("fail to GetSharedBundleInfoBySelf due to write InterfaceToken fail"); in GetSharedBundleInfoBySelf()
3765 APP_LOGE("fail to GetSharedBundleInfoBySelf due to write bundleName fail"); in GetSharedBundleInfoBySelf()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/
H A Dbms_bundle_manager_test.cpp2528 retCode = hostImpl->GetSharedBundleInfoBySelf("", sharedBundleInfo); in HWTEST_F()

Completed in 89 milliseconds