Home
last modified time | relevance | path

Searched refs:GetSpecifiedDistributionType (Results 1 - 25 of 25) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/app_provision_info/
H A Dapp_provision_info_manager.cpp62 bool AppProvisionInfoManager::GetSpecifiedDistributionType( in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::AppProvisionInfoManager
65 return AppProvisionInfoManagerDb_->GetSpecifiedDistributionType(bundleName, specifiedDistributionType); in GetSpecifiedDistributionType()
H A Dapp_provision_info_rdb.cpp236 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 Dapp_provision_info_manager.h36 bool GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType);
H A Dapp_provision_info_rdb.h37 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 Dbms_bundle_app_provision_info_test.cpp575 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 Dnative_module.cpp155 DECLARE_NAPI_FUNCTION("getSpecifiedDistributionType", GetSpecifiedDistributionType), in BundleManagerExport()
H A Dbundle_manager.h321 napi_value GetSpecifiedDistributionType(napi_env env, napi_callback_info info);
H A Dbundle_manager.cpp96 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 Dbms_bundle_hsp_test.cpp326 * @tc.desc: test install, GetSpecifiedDistributionType and GetAdditionalInfo
344 auto ret = dataMgr->GetSpecifiedDistributionType(BUNDLE_NAME, specifiedDistributionType); in HWTEST_F()
H A Dbms_bundle_shared_library_install_test.cpp580 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 Dbundlemgrproxy_fuzzer.cpp272 bundleMgrProxy.GetSpecifiedDistributionType(bundleName, specifiedDistributionType); in DoSomethingInterestingWithMyAPI()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/
H A Dbundle_mgr_interface.h1356 virtual ErrCode GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType) in GetSpecifiedDistributionType() function in OHOS::AppExecFwk::IBundleMgr
H A Dbundle_mgr_proxy.h949 virtual ErrCode GetSpecifiedDistributionType(const std::string &bundleName,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dbundle_mgr_host_impl.h905 virtual ErrCode GetSpecifiedDistributionType(const std::string &bundleName,
H A Dbundle_data_mgr.h878 ErrCode GetSpecifiedDistributionType(const std::string &bundleName, std::string &specifiedDistributionType);
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/
H A Dbms_bundle_permission_false_test.cpp1326 * @tc.name: test GetSpecifiedDistributionType
1332 ErrCode ret = bundleMgrHostImpl_->GetSpecifiedDistributionType("", specifiedDistributionType); in HWTEST_F()
H A Dbms_bundle_permission_system_app_test.cpp961 * @tc.name: test GetSpecifiedDistributionType
967 ErrCode ret = bundleMgrHostImpl_->GetSpecifiedDistributionType("", specifiedDistributionType); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_mgr_host_impl.cpp3513 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 Dbundle_data_mgr.cpp7002 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 Dacts_bms_kit_system_test.cpp8222 * @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 Dbms_bundle_kit_service_test.cpp12306 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 Dbms_bundle_data_mgr_test.cpp3107 * @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 Dbms_bundle_manager_test.cpp5128 * @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 Dbundle_mgr_host.cpp3276 ErrCode ret = GetSpecifiedDistributionType(bundleName, specifiedDistributedType); in HandleGetSpecifiedDistributionType()
H A Dbundle_mgr_proxy.cpp3846 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()

Completed in 124 milliseconds