/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_provision_info/ |
H A D | app_provision_info_manager.cpp | 62 bool AppProvisionInfoManager::GetSpecifiedDistributionType( in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::AppProvisionInfoManager 65 return AppProvisionInfoManagerDb_->GetSpecifiedDistributionType(bundleName, specifiedDistributionType); in GetSpecifiedDistributionType()
|
H A D | app_provision_info_rdb.cpp | 236 bool AppProvisionInfoManagerRdb::GetSpecifiedDistributionType( in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::AppProvisionInfoManagerRdb 240 APP_LOGE("GetSpecifiedDistributionType failed, bundleName is empty"); in GetSpecifiedDistributionType() 247 APP_LOGW("bundleName %{public}s GetSpecifiedDistributionType QueryData failed", bundleName.c_str()); in GetSpecifiedDistributionType() 253 APP_LOGW("bundleName: %{public}s GetSpecifiedDistributionType failed", bundleName.c_str()); in GetSpecifiedDistributionType()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/app_provision_info/ |
H A D | app_provision_info_manager.h | 36 bool GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType);
|
H A D | app_provision_info_rdb.h | 37 bool GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_app_provision_info_test/ |
H A D | bms_bundle_app_provision_info_test.cpp | 575 ret = DelayedSingleton<AppProvisionInfoManager>::GetInstance()->GetSpecifiedDistributionType(BUNDLE_NAME, in HWTEST_F() 604 * @tc.name: test the start function of SetSpecifiedDistributionType and GetSpecifiedDistributionType 617 ret = DelayedSingleton<AppProvisionInfoManager>::GetInstance()->GetSpecifiedDistributionType(BUNDLE_NAME, in HWTEST_F() 643 * @tc.name: test the start function of GetSpecifiedDistributionType 648 bool ret = DelayedSingleton<AppProvisionInfoManager>::GetInstance()->GetSpecifiedDistributionType("", in HWTEST_F() 655 * @tc.name: test the start function of GetSpecifiedDistributionType 660 bool ret = DelayedSingleton<AppProvisionInfoManager>::GetInstance()->GetSpecifiedDistributionType(BUNDLE_NAME, in HWTEST_F() 667 * @tc.name: test the start function of GetSpecifiedDistributionType 676 bool ret = appProvisionInfoManagerRdb->GetSpecifiedDistributionType(BUNDLE_NAME, specifiedDistributionType); in HWTEST_F() 681 bool result = appProvisionInfoManagerRdb->GetSpecifiedDistributionType(BUNDLE_NAM in HWTEST_F() [all...] |
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundle_manager/ |
H A D | native_module.cpp | 155 DECLARE_NAPI_FUNCTION("getSpecifiedDistributionType", GetSpecifiedDistributionType), in BundleManagerExport()
|
H A D | bundle_manager.h | 321 napi_value GetSpecifiedDistributionType(napi_env env, napi_callback_info info);
|
H A D | bundle_manager.cpp | 96 const std::string RESOURCE_NAME_OF_GET_SPECIFIED_DISTRIBUTION_TYPE = "GetSpecifiedDistributionType"; 4531 napi_value GetSpecifiedDistributionType(napi_env env, napi_callback_info info) in GetSpecifiedDistributionType() function 4533 APP_LOGD("GetSpecifiedDistributionType napi called"); in GetSpecifiedDistributionType() 4560 iBundleMgr->GetSpecifiedDistributionType(bundleName, specifiedDistributionType)); in GetSpecifiedDistributionType() 4562 APP_LOGE_NOFUNC("GetSpecifiedDistributionType failed -n %{public}s ret:%{public}d", in GetSpecifiedDistributionType() 4573 APP_LOGD("call GetSpecifiedDistributionType done"); in GetSpecifiedDistributionType()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_hsp_test/ |
H A D | bms_bundle_hsp_test.cpp | 326 * @tc.desc: test install, GetSpecifiedDistributionType and GetAdditionalInfo 344 auto ret = dataMgr->GetSpecifiedDistributionType(BUNDLE_NAME, specifiedDistributionType); in HWTEST_F()
|
H A D | bms_bundle_shared_library_install_test.cpp | 580 auto ret = dataMgr->GetSpecifiedDistributionType(SHARED_BUNDLE_NAME_A, specifiedDistributionType); in HWTEST_F() 849 * @tc.name: test GetSpecifiedDistributionType 860 ErrCode res = GetBundleDataMgr()->GetSpecifiedDistributionType(SHARED_BUNDLE_NAME_A, specifiedDistributionType); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/ |
H A D | bundlemgrproxy_fuzzer.cpp | 272 bundleMgrProxy.GetSpecifiedDistributionType(bundleName, specifiedDistributionType); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_interface.h | 1356 virtual ErrCode GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType) in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::IBundleMgr
|
H A D | bundle_mgr_proxy.h | 949 virtual ErrCode GetSpecifiedDistributionType(const std::string &bundleName,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_mgr_host_impl.h | 905 virtual ErrCode GetSpecifiedDistributionType(const std::string &bundleName,
|
H A D | bundle_data_mgr.h | 878 ErrCode GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/ |
H A D | bms_bundle_permission_false_test.cpp | 1326 * @tc.name: test GetSpecifiedDistributionType 1332 ErrCode ret = bundleMgrHostImpl_->GetSpecifiedDistributionType("", specifiedDistributionType); in HWTEST_F()
|
H A D | bms_bundle_permission_system_app_test.cpp | 961 * @tc.name: test GetSpecifiedDistributionType 967 ErrCode ret = bundleMgrHostImpl_->GetSpecifiedDistributionType("", specifiedDistributionType); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 3513 ErrCode BundleMgrHostImpl::GetSpecifiedDistributionType(const std::string &bundleName, in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::BundleMgrHostImpl 3516 APP_LOGD("GetSpecifiedDistributionType bundleName: %{public}s", bundleName.c_str()); in GetSpecifiedDistributionType() 3532 return dataMgr->GetSpecifiedDistributionType(bundleName, specifiedDistributionType); in GetSpecifiedDistributionType()
|
H A D | bundle_data_mgr.cpp | 7002 ErrCode BundleDataMgr::GetSpecifiedDistributionType( in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::BundleDataMgr 7005 APP_LOGD("GetSpecifiedDistributionType bundleName: %{public}s", bundleName.c_str()); in GetSpecifiedDistributionType() 7020 if (!DelayedSingleton<AppProvisionInfoManager>::GetInstance()->GetSpecifiedDistributionType(bundleName, in GetSpecifiedDistributionType() 7022 APP_LOGW("bundleName:%{public}s GetSpecifiedDistributionType failed", bundleName.c_str()); in GetSpecifiedDistributionType()
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/ |
H A D | acts_bms_kit_system_test.cpp | 8222 * @tc.name: test GetSpecifiedDistributionType proxy 8233 ErrCode ret = bundleMgrProxy->GetSpecifiedDistributionType(BASE_BUNDLE_NAME, specifiedDistributionType); in HWTEST_F() 8240 * @tc.name: test GetSpecifiedDistributionType proxy 8256 auto ret = bundleMgrProxy->GetSpecifiedDistributionType(appName, specifiedDistributionType); in HWTEST_F() 8385 ret = bundleMgrProxy->GetSpecifiedDistributionType(appName, specifiedDistributionType); in HWTEST_F() 8431 ret = bundleMgrProxy->GetSpecifiedDistributionType(appName, specifiedDistributionType); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/ |
H A D | bms_bundle_kit_service_test.cpp | 12306 auto ret = bundleMgrProxy->GetSpecifiedDistributionType(BUNDLE_NAME_TEST, specifiedDistributionType); in HWTEST_F() 12325 auto ret = bundleMgrProxy->GetSpecifiedDistributionType("", specifiedDistributionType); in HWTEST_F() 12345 auto ret = bundleMgrProxy->GetSpecifiedDistributionType(BUNDLE_NAME_TEST, specifiedDistributionType); in HWTEST_F() 12366 auto ret = dataMgr->GetSpecifiedDistributionType(BUNDLE_NAME_TEST, specifiedDistributionType); in HWTEST_F() 12391 auto ret = dataMgr->GetSpecifiedDistributionType(BUNDLE_NAME_TEST, specifiedDistributionType); in HWTEST_F()
|
H A D | bms_bundle_data_mgr_test.cpp | 3107 * @tc.name: test GetSpecifiedDistributionType 3120 ErrCode res = GetBundleDataMgr()->GetSpecifiedDistributionType( in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/ |
H A D | bms_bundle_manager_test.cpp | 5128 * @tc.name: test GetSpecifiedDistributionType 5135 ErrCode ret = hostImpl->GetSpecifiedDistributionType(BUNDLE_NAME, specifiedDistributionType); in HWTEST_F() 5141 * @tc.name: test GetSpecifiedDistributionType 5152 ErrCode ret = hostImpl->GetSpecifiedDistributionType(BUNDLE_NAME, specifiedDistributionType); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_host.cpp | 3276 ErrCode ret = GetSpecifiedDistributionType(bundleName, specifiedDistributedType); in HandleGetSpecifiedDistributionType()
|
H A D | bundle_mgr_proxy.cpp | 3846 ErrCode BundleMgrProxy::GetSpecifiedDistributionType(const std::string &bundleName, in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::BundleMgrProxy 3855 APP_LOGE("fail to GetSpecifiedDistributionType due to write InterfaceToken failed"); in GetSpecifiedDistributionType() 3859 APP_LOGE("fail to GetSpecifiedDistributionType due to write bundleName fail"); in GetSpecifiedDistributionType()
|