/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_information/getbundlepackinfo_fuzzer/ |
H A D | getbundlepackinfo_fuzzer.cpp | 32 bundleMgrProxy.GetBundlePackInfo(bundleName, flag, bundlePackInfo, reinterpret_cast<uintptr_t>(data)); in DoSomethingInterestingWithMyAPI() 33 bundleMgrProxy.GetBundlePackInfo(bundleName, reinterpret_cast<uintptr_t>(data), in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_event_util_test/ |
H A D | mock_form_bms_helper.cpp | 44 bool FormBmsHelper::GetBundlePackInfo(const std::string &bundleName, const int32_t userId,
in GetBundlePackInfo() function in OHOS::AppExecFwk::FormBmsHelper
|
/foundation/bundlemanager/bundle_framework/interfaces/kits/js/free_install/ |
H A D | native_module.cpp | 41 DECLARE_NAPI_FUNCTION("getBundlePackInfo", GetBundlePackInfo), in FreeInstallExport()
|
H A D | free_install_unsupported.cpp | 43 napi_value GetBundlePackInfo(napi_env env, napi_callback_info info) in GetBundlePackInfo() function
|
H A D | free_install.h | 56 napi_value GetBundlePackInfo(napi_env env, napi_callback_info info);
|
H A D | free_install.cpp | 556 auto ret = iBundleMgr->GetBundlePackInfo(bundleName, flags, bundlePackInfo); in InnerGetBundlePackInfo() 596 napi_value GetBundlePackInfo(napi_env env, napi_callback_info info) in GetBundlePackInfo() function 640 APP_LOGD("call GetBundlePackInfo end"); in GetBundlePackInfo()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_client.cpp | 57 ErrCode BundleMgrClient::GetBundlePackInfo( in GetBundlePackInfo() function in OHOS::AppExecFwk::BundleMgrClient 64 return impl_->GetBundlePackInfo(bundleName, flag, bundlePackInfo, userId); in GetBundlePackInfo()
|
H A D | bundle_mgr_client_impl.cpp | 85 ErrCode BundleMgrClientImpl::GetBundlePackInfo( in GetBundlePackInfo() function in OHOS::AppExecFwk::BundleMgrClientImpl 95 return bundleMgr_->GetBundlePackInfo(bundleName, flag, bundlePackInfo, userId); in GetBundlePackInfo()
|
/foundation/ability/form_fwk/test/unittest/fms_form_bms_helper_test/ |
H A D | fms_form_bms_helper_test.cpp | 136 ErrCode GetBundlePackInfo(const std::string &bundleName, int32_t flags, 139 GTEST_LOG_(INFO) << "GetBundlePackInfo int32_t"; 143 ErrCode GetBundlePackInfo(const std::string &bundleName, const BundlePackFlag flag, 146 GTEST_LOG_(INFO) << "GetBundlePackInfo BundlePackFlag"; 356 * @tc.desc: Verify that the GetBundlePackInfo interface executes normally and exits without exception. 366 EXPECT_FALSE(formBmsHelper.GetBundlePackInfo(bundleName, userId, bundlePackInfo)); in HWTEST_F() 371 EXPECT_FALSE(formBmsHelper.GetBundlePackInfo(bundleName, userId, bundlePackInfo)); in HWTEST_F() 480 * @tc.desc: Verify that the GetBundlePackInfo interface executes normally and exits without exception. 494 EXPECT_TRUE(formBmsHelper.GetBundlePackInfo(bundleName, userId, bundlePackInfo)); in HWTEST_F()
|
/foundation/ability/form_fwk/services/include/ |
H A D | form_bms_helper.h | 78 bool GetBundlePackInfo(const std::string &bundleName, int32_t userId, BundlePackInfo &bundlePackInfo);
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_client.h | 40 ErrCode GetBundlePackInfo(const std::string &bundleName, const BundlePackFlag flag, BundlePackInfo &bundlePackInfo,
|
H A D | bundle_mgr_client_impl.h | 43 ErrCode GetBundlePackInfo(
|
H A D | bundle_mgr_interface.h | 242 virtual ErrCode GetBundlePackInfo(const std::string &bundleName, const BundlePackFlag flag, in GetBundlePackInfo() function in OHOS::AppExecFwk::IBundleMgr 256 virtual ErrCode GetBundlePackInfo(const std::string &bundleName, int32_t flags, in GetBundlePackInfo() function in OHOS::AppExecFwk::IBundleMgr
|
H A D | bundle_mgr_proxy.h | 177 virtual ErrCode GetBundlePackInfo(const std::string &bundleName, const BundlePackFlag flags, 187 virtual ErrCode GetBundlePackInfo(const std::string &bundleName, int32_t flags,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_mgr_proxy_test/ |
H A D | bms_bundle_mgr_proxy_test.cpp | 276 * @tc.name: test the GetBundlePackInfo 278 * 2. test GetBundlePackInfo 288 auto res = bundleMgrProxy.GetBundlePackInfo(bundleName, flag, bundlePackInfo, userId); in HWTEST_F() 291 res = bundleMgrProxy.GetBundlePackInfo(bundleName, flag, bundlePackInfo, userId); in HWTEST_F() 298 * @tc.name: test the GetBundlePackInfo 300 * 2. test GetBundlePackInfo 310 auto res = bundleMgrProxy.GetBundlePackInfo(bundleName, flags, bundlePackInfo, userId); in HWTEST_F() 313 res = bundleMgrProxy.GetBundlePackInfo(bundleName, flags, bundlePackInfo, userId); in HWTEST_F()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_bms_helper.cpp | 140 bool FormBmsHelper::GetBundlePackInfo(const std::string &bundleName, const int32_t userId, in GetBundlePackInfo() function in OHOS::AppExecFwk::FormBmsHelper 150 if (IN_PROCESS_CALL(iBundleMgr->GetBundlePackInfo(bundleName, GET_PACK_INFO_ALL, bundlePackInfo, userId)) in GetBundlePackInfo()
|
H A D | form_event_util.cpp | 94 bool hasPackInfo = FormBmsHelper::GetInstance().GetBundlePackInfo(bundleName, userId, bundlePackInfo); in HandleProviderUpdated()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_free_install_test/ |
H A D | bms_bundle_free_install_test.cpp | 522 * Function: GetBundlePackInfo 523 * @tc.name: test GetBundlePackInfo 534 ErrCode ret = bundleMgr->GetBundlePackInfo(BUNDLE_NAME_DEMO, in HWTEST_F() 544 * Function: GetBundlePackInfo 545 * @tc.name: test GetBundlePackInfo 556 ErrCode ret = bundleMgr->GetBundlePackInfo(BUNDLE_NAME, in HWTEST_F() 566 * Function: GetBundlePackInfo 567 * @tc.name: test GetBundlePackInfo 578 ErrCode ret = bundleMgr->GetBundlePackInfo(BUNDLE_NAME, in HWTEST_F() 599 * Function: GetBundlePackInfo [all...] |
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/ |
H A D | bundlemgrproxy_fuzzer.cpp | 185 bundleMgrProxy.GetBundlePackInfo(bundleName + "1", 0, bundlePackInfo, reinterpret_cast<uintptr_t>(data)); in DoSomethingInterestingWithMyAPI() 186 bundleMgrProxy.GetBundlePackInfo( in DoSomethingInterestingWithMyAPI()
|
/foundation/ability/form_fwk/test/unittest/fms_form_mgr_service_test/ |
H A D | fms_form_mgr_service_test2.cpp | 114 ErrCode GetBundlePackInfo(const std::string &bundleName, int32_t flags, 117 GTEST_LOG_(INFO) << "GetBundlePackInfo int32_t"; 121 ErrCode GetBundlePackInfo(const std::string &bundleName, const BundlePackFlag flag, 124 GTEST_LOG_(INFO) << "GetBundlePackInfo BundlePackFlag";
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_mgr_host_impl.h | 165 virtual ErrCode GetBundlePackInfo(const std::string &bundleName, const BundlePackFlag flag, 176 virtual ErrCode GetBundlePackInfo(const std::string &bundleName, int32_t flags, BundlePackInfo &bundlePackInfo,
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/bms_client_system_test/ |
H A D | bundle_mgr_client_system_test.cpp | 1950 * @tc.name: GetBundlePackInfo 1967 auto ret = bundleMgrClient.GetBundlePackInfo(BUNDLE_NAME, BundlePackFlag::GET_PACK_INFO_ALL, info, DEFAULT_USERID); in HWTEST_F() 1970 ret = bundleMgrClient.GetBundlePackInfo("", BundlePackFlag::GET_PACK_INFO_ALL, info, DEFAULT_USERID); in HWTEST_F() 2307 auto res1 = client.GetBundlePackInfo( in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/fms_form_host_record_test/ |
H A D | fms_form_host_record_test.cpp | 302 * @tc.desc: test GetBundlePackInfo function. 303 * @tc.type: GetBundlePackInfo 312 EXPECT_EQ(false, formBmsHelper.GetBundlePackInfo(bundleName, userId, bundlePackInfo)); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 355 ErrCode BundleMgrHostImpl::GetBundlePackInfo( in GetBundlePackInfo() function in OHOS::AppExecFwk::BundleMgrHostImpl 358 return GetBundlePackInfo(bundleName, static_cast<int32_t>(flag), bundlePackInfo, userId); in GetBundlePackInfo() 361 ErrCode BundleMgrHostImpl::GetBundlePackInfo( in GetBundlePackInfo() function in OHOS::AppExecFwk::BundleMgrHostImpl 370 APP_LOGE("GetBundlePackInfo failed due to lack of permission"); in GetBundlePackInfo() 378 return dataMgr->GetBundlePackInfo(bundleName, flags, bundlePackInfo, userId); in GetBundlePackInfo()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/ |
H A D | bms_bundle_permission_false_test.cpp | 219 * @tc.name: test GetBundlePackInfo of BundleMgrHostImpl 221 * 2. GetBundlePackInfo false by no permission 226 ErrCode ret = bundleMgrHostImpl_->GetBundlePackInfo(BUNDLE_NAME, FLAGS, bundlePackInfo, USERID); in HWTEST_F()
|