/foundation/ability/ability_runtime/test/unittest/insight_intent/insight_intent_utils_test/ |
H A D | insight_intent_utils_test.cpp | 127 EXPECT_CALL(*mockBundleMgr, GetJsonProfile(testing::_, testing::_, testing::_, testing::_, testing::_)) in HWTEST_F() 158 EXPECT_CALL(*mockBundleMgr, GetJsonProfile(testing::_, testing::_, testing::_, testing::_, testing::_)) in HWTEST_F() 165 EXPECT_CALL(*mockBundleMgr, GetJsonProfile(testing::_, testing::_, testing::_, testing::_, testing::_)) in HWTEST_F() 185 EXPECT_CALL(*mockBundleMgr, GetJsonProfile(testing::_, testing::_, testing::_, testing::_, testing::_)) in HWTEST_F() 207 EXPECT_CALL(*mockBundleMgr, GetJsonProfile(testing::_, testing::_, testing::_, testing::_, testing::_)) in HWTEST_F()
|
/foundation/ability/ability_runtime/services/abilitymgr/src/utils/ |
H A D | insight_intent_utils.cpp | 73 auto ret = IN_PROCESS_CALL(bundleMgrHelper->GetJsonProfile(AppExecFwk::INTENT_PROFILE, bundleName, moduleName, in GetSrcEntry()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netconnclient/include/ |
H A D | network_security_config.h | 87 std::string GetJsonProfile();
|
/foundation/communication/netmanager_base/utils/bundle_utils/src/ |
H A D | net_bundle_impl.cpp | 55 ret = bundleMgrProxy->GetJsonProfile(AppExecFwk::ProfileType::NETWORK_PROFILE, in GetJsonFromBundle()
|
/foundation/ability/ability_runtime/test/mock/common/include/ |
H A D | mock_bundle_manager_proxy.h | 48 MOCK_METHOD5(GetJsonProfile, ErrCode(AppExecFwk::ProfileType, const std::string&, const std::string&,
|
H A D | mock_bundle_manager_service.h | 50 MOCK_METHOD5(GetJsonProfile, ErrCode(AppExecFwk::ProfileType, const std::string&, const std::string&,
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/bundle_manager/ |
H A D | native_module.cpp | 158 DECLARE_NAPI_FUNCTION("getJsonProfile", GetJsonProfile), in BundleManagerExport()
|
H A D | bundle_manager.h | 330 napi_value GetJsonProfile(napi_env env, napi_callback_info info);
|
H A D | bundle_manager.cpp | 99 const std::string GET_JSON_PROFILE = "GetJsonProfile"; 4726 napi_value GetJsonProfile(napi_env env, napi_callback_info info) in GetJsonProfile() function 4728 APP_LOGD("GetJsonProfile napi called"); in GetJsonProfile() 4744 iBundleMgr->GetJsonProfile(static_cast<ProfileType>(profileType), bundleName, moduleName, profile, userId)); in GetJsonProfile() 4746 APP_LOGD("napi GetJsonProfile err:%{public}d -n %{public}s", ret, bundleName.c_str()); in GetJsonProfile() 4754 APP_LOGD("call GetJsonProfile done"); in GetJsonProfile()
|
/foundation/multimedia/av_session/services/session/adapter/ |
H A D | bundle_status_adapter.cpp | 173 auto ret = bundleMgrProxy->GetJsonProfile(AppExecFwk::ProfileType::INTENT_PROFILE, bundleName, module, in IsSupportPlayIntent() 176 SLOGI("GetJsonProfile success, profile=%{public}s", profile.c_str()); in IsSupportPlayIntent()
|
H A D | avsession_dynamic_insight.cpp | 104 auto ret = bundleMgrProxy->GetJsonProfile(AppExecFwk::ProfileType::INTENT_PROFILE, bundleName, module, in IsSupportPlayIntent() 107 SLOGI("GetJsonProfile success, profile=%{public}s", profile.c_str()); in IsSupportPlayIntent() 129 SLOGD("GetJsonProfile profile=%{public}s", profile.c_str()); in GetPlayIntentParam()
|
/foundation/communication/netmanager_base/frameworks/native/netconnclient/src/ |
H A D | network_security_config.cpp | 342 __attribute__((no_sanitize("cfi"))) std::string NetworkSecurityConfig::GetJsonProfile() in GetJsonProfile() function in OHOS::NetManagerStandard::NetworkSecurityConfig 375 static std::string json = GetJsonProfile(); in GetJsonFromBundle()
|
/foundation/ability/ability_runtime/interfaces/kits/native/appkit/ability_bundle_manager_helper/ |
H A D | bundle_mgr_helper.h | 76 ErrCode GetJsonProfile(ProfileType profileType, const std::string &bundleName,
|
/foundation/ability/ability_runtime/test/fuzztest/bundlemgrhelper_fuzzer/ |
H A D | bundlemgrhelper_fuzzer.cpp | 139 bmHelper->GetJsonProfile(static_cast<ProfileType>(int32Param), stringParam, stringParam, stringParam, int32Param); in BundleMgrHelperFuzztest2()
|
/foundation/ability/ability_runtime/frameworks/native/appkit/ability_bundle_manager_helper/ |
H A D | bundle_mgr_helper.cpp | 838 ErrCode BundleMgrHelper::GetJsonProfile(ProfileType profileType, const std::string &bundleName, in GetJsonProfile() function in OHOS::AppExecFwk::BundleMgrHelper 849 return bundleMgr->GetJsonProfile(profileType, bundleName, moduleName, profile, userId); in GetJsonProfile()
|
/foundation/ability/ability_runtime/test/unittest/bundle_mgr_helper_test/ |
H A D | bundle_mgr_helper_test.cpp | 783 * @tc.desc: GetJsonProfile 793 auto ret = bundleMgrHelper->GetJsonProfile(profileType, bundleName, moduleName, profile, userId); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/ |
H A D | bundlemgrproxy_fuzzer.cpp | 296 bundleMgrProxy.GetJsonProfile(ProfileType::ADDITION_PROFILE, bundleName, moduleName, profile); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_interface.h | 1428 virtual ErrCode GetJsonProfile(ProfileType profileType, const std::string &bundleName, in GetJsonProfile() function in OHOS::AppExecFwk::IBundleMgr
|
H A D | bundle_mgr_proxy.h | 994 virtual ErrCode GetJsonProfile(ProfileType profileType, const std::string &bundleName,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/ |
H A D | bms_bundle_manager_test.cpp | 5501 * @tc.name: GetJsonProfile 5502 * @tc.desc: 1. GetJsonProfile with wrong bundle name 5503 * 2. GetJsonProfile failed, return ERR_BUNDLE_MANAGER_BUNDLE_NOT_EXIST 5517 auto ret = dataMgr->GetJsonProfile(profileType, wrongName, MODULE_NAME, profile, USERID); in HWTEST_F() 5524 * @tc.name: GetJsonProfile 5525 * @tc.desc: 1. GetJsonProfile with wrong module name 5526 * 2. GetJsonProfile failed, return ERR_BUNDLE_MANAGER_MODULE_NOT_EXIST 5540 auto ret = dataMgr->GetJsonProfile(profileType, BUNDLE_BACKUP_NAME, wrongName, profile, USERID); in HWTEST_F() 5547 * @tc.name: GetJsonProfile 5548 * @tc.desc: 1. GetJsonProfile i [all...] |
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_mgr_host_impl.h | 944 virtual ErrCode GetJsonProfile(ProfileType profileType, const std::string &bundleName,
|
H A D | bundle_data_mgr.h | 913 ErrCode GetJsonProfile(ProfileType profileType, const std::string &bundleName, const std::string &moduleName,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 3750 ErrCode BundleMgrHostImpl::GetJsonProfile(ProfileType profileType, const std::string &bundleName, in GetJsonProfile() function in OHOS::AppExecFwk::BundleMgrHostImpl 3753 APP_LOGD("GetJsonProfile profileType: %{public}d, bundleName: %{public}s, moduleName: %{public}s" in GetJsonProfile() 3772 return dataMgr->GetJsonProfile(profileType, bundleName, moduleName, profile, userId); in GetJsonProfile()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_host.cpp | 3465 ErrCode ret = GetJsonProfile(profileType, bundleName, moduleName, profile, userId); in HandleGetJsonProfile()
|
H A D | bundle_mgr_proxy.cpp | 4167 ErrCode BundleMgrProxy::GetJsonProfile(ProfileType profileType, const std::string &bundleName, in GetJsonProfile() function in OHOS::AppExecFwk::BundleMgrProxy 4171 APP_LOGD("begin to GetJsonProfile"); in GetJsonProfile() 4179 APP_LOGE("fail to GetJsonProfile due to write InterfaceToken fail"); in GetJsonProfile() 4183 APP_LOGE("fail to GetJsonProfile due to write flags fail"); in GetJsonProfile() 4187 APP_LOGE("fail to GetJsonProfile due to write bundleName fail"); in GetJsonProfile() 4191 APP_LOGE("fail to GetJsonProfile due to write moduleName fail"); in GetJsonProfile()
|