/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/bms_extension/ |
H A D | bms_extension_client.h | 51 ErrCode BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags,
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_others/bmsextensionclient_fuzzer/ |
H A D | bmsextensionclient_fuzzer.cpp | 56 bmsExtensionClient.BatchGetBundleInfo(bundleNames, reinterpret_cast<uintptr_t>(data), in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_mgr_proxy_test/ |
H A D | bms_bundle_mgr_proxy_test.cpp | 228 * @tc.name: test the BatchGetBundleInfo 230 * 2. test BatchGetBundleInfo 241 auto res = bundleMgrProxy.BatchGetBundleInfo(wants, flags, bundleInfos, userId); in HWTEST_F() 247 res = bundleMgrProxy.BatchGetBundleInfo(wants, flags, bundleInfos, userId); in HWTEST_F() 253 * @tc.name: test the BatchGetBundleInfo 255 * 2. test BatchGetBundleInfo 266 auto res = bundleMgrProxy.BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId); in HWTEST_F() 270 res = bundleMgrProxy.BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/ |
H A D | bundlemgrproxy_fuzzer.cpp | 180 bundleMgrProxy.BatchGetBundleInfo(wants, flags, bundleInfos, reinterpret_cast<uintptr_t>(data)); in DoSomethingInterestingWithMyAPI() 182 bundleMgrProxy.BatchGetBundleInfo(bundleNames, flags, bundleInfos, reinterpret_cast<uintptr_t>(data)); in DoSomethingInterestingWithMyAPI()
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/ |
H A D | bundle_mgr_interface.h | 192 virtual ErrCode BatchGetBundleInfo(const std::vector<Want> &wants, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::IBundleMgr 205 virtual ErrCode BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::IBundleMgr
|
H A D | bundle_mgr_proxy.h | 139 virtual ErrCode BatchGetBundleInfo(const std::vector<Want> &wants, int32_t flags, 149 virtual ErrCode BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/bms_extension/ |
H A D | bms_extension_client.cpp | 245 ErrCode BmsExtensionClient::BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::BmsExtensionClient
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_kit_service_test/ |
H A D | bms_bundle_data_mgr_test.cpp | 2092 * @tc.name: BatchGetBundleInfo 2093 * @tc.desc: test BatchGetBundleInfo of BmsExtensionClient 2104 ErrCode res = bmsExtensionClient->BatchGetBundleInfo(bundleNames, 0, bundleInfos, userId, isNewVersion); in HWTEST_F() 2110 * @tc.name: BatchGetBundleInfo 2111 * @tc.desc: test BatchGetBundleInfo of BmsExtensionClient 2122 ErrCode res = bmsExtensionClient->BatchGetBundleInfo(bundleNames, 0, bundleInfos, userId, isNewVersion); in HWTEST_F() 2150 ErrCode res = bmsExtensionClient->BatchGetBundleInfo(bundleNames, 0, bundleInfos, userId, isNewVersion); in HWTEST_F() 5578 * @tc.name: BatchGetBundleInfo 5579 * @tc.desc: test BatchGetBundleInfo of BmsExtensionClient 5589 ErrCode res = bmsExtensionClient->BatchGetBundleInfo(bundleName in HWTEST_F() [all...] |
H A D | bms_bundle_kit_service_test.cpp | 8134 * @tc.name: Test BatchGetBundleInfo 8135 * @tc.desc: 1.Test the BatchGetBundleInfo by BundleMgrHostImpl 8145 ErrCode ret = hostImpl->BatchGetBundleInfo(bundleNames, flags, bundleInfos, DEFAULT_USERID); in HWTEST_F() 8153 * @tc.name: Test BatchGetBundleInfo 8154 * @tc.desc: 1.Test the BatchGetBundleInfo by BundleMgrHostImpl 8165 ErrCode ret = hostImpl->BatchGetBundleInfo(bundleNames, flags, result, DEFAULT_USERID); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | bundle_mgr_host_impl.h | 139 virtual ErrCode BatchGetBundleInfo(const std::vector<std::string> &bundleNames,
|
H A D | bundle_data_mgr.h | 327 void BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags,
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/ |
H A D | bundle_mgr_host_impl.cpp | 57 const std::string FUNCATION_BATCH_BUNDLE_INFO = "BundleMgrHostImpl::BatchGetBundleInfo"; 269 ErrCode BundleMgrHostImpl::BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::BundleMgrHostImpl 272 APP_LOGI("start BatchGetBundleInfo, bundleName : %{public}s, flags : %{public}d, userId : %{public}d", in BatchGetBundleInfo() 280 APP_LOGD("verify permission success, begin to BatchGetBundleInfo"); in BatchGetBundleInfo() 286 dataMgr->BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId); in BatchGetBundleInfo() 292 bmsExtensionClient->BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId, true); in BatchGetBundleInfo()
|
H A D | bundle_data_mgr.cpp | 2756 void BundleDataMgr::BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::BundleDataMgr
|
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/ |
H A D | bundle_mgr_proxy.cpp | 399 ErrCode BundleMgrProxy::BatchGetBundleInfo(const std::vector<Want> &wants, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::BundleMgrProxy 406 return BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId); in BatchGetBundleInfo() 409 ErrCode BundleMgrProxy::BatchGetBundleInfo(const std::vector<std::string> &bundleNames, int32_t flags, in BatchGetBundleInfo() function in OHOS::AppExecFwk::BundleMgrProxy 416 APP_LOGE("fail to BatchGetBundleInfo due to params empty"); in BatchGetBundleInfo() 422 APP_LOGE("fail to BatchGetBundleInfo due to bundleName %{public}zu empty", i); in BatchGetBundleInfo() 430 APP_LOGE("fail to BatchGetBundleInfo due to write InterfaceToken fail"); in BatchGetBundleInfo() 434 APP_LOGE("fail to BatchGetBundleInfo due to write bundle name count fail"); in BatchGetBundleInfo() 444 APP_LOGE("fail to BatchGetBundleInfo due to write flag fail"); in BatchGetBundleInfo() 448 APP_LOGE("fail to BatchGetBundleInfo due to write userId fail"); in BatchGetBundleInfo()
|
H A D | bundle_mgr_host.cpp | 866 auto ret = BatchGetBundleInfo(bundleNames, flags, bundleInfos, userId); in HandleBatchGetBundleInfo()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_service_startup_test/ |
H A D | bms_service_startup_test.cpp | 1436 * @tc.name: BatchGetBundleInfo 1437 * @tc.desc: test BatchGetBundleInfo of BmsExtensionClient 1446 auto ret = bmsExtensionClient->BatchGetBundleInfo(bundleNames, FLAG, bundleInfos, false); in HWTEST_F()
|
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/ |
H A D | acts_bms_kit_system_test.cpp | 6692 * @tc.name: test BatchGetBundleInfo proxy 6693 * @tc.desc: BatchGetBundleInfo bundlenames 6710 ErrCode res = bundleMgrProxy->BatchGetBundleInfo(bundleNames, flag, bundleInfos, USERID); in HWTEST_F() 6721 * @tc.name: test BatchGetBundleInfo proxy 6722 * @tc.desc: BatchGetBundleInfo wants 6743 ErrCode res = bundleMgrProxy->BatchGetBundleInfo(wants, flag, bundleInfos, USERID); in HWTEST_F() 6755 * @tc.desc: BatchGetBundleInfo wants
|
/foundation/window/window_manager/window_scene/session_manager/src/ |
H A D | scene_session_manager.cpp | 6651 auto ret = static_cast<int32_t>(bundleMgr_->BatchGetBundleInfo(bundleNames, flag, bundleInfos, userId)); in GetBatchAbilityInfos()
|