Home
last modified time | relevance | path

Searched refs:GetIconById (Results 1 - 16 of 16) sorted by relevance

/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_resource_manager_test/
H A Dbms_bundle_resource_manager_test.cpp281 * 2.GetIconById
288 std::string iconBase64 = dataMgr->GetIconById(BUNDLE_NAME, MODULE_NAME, APP_ICON_ID, 0, USER_ID); in HWTEST_F()
296 * 2.GetIconById
304 dataMgr->GetIconById(BUNDLE_NAME, MODULE_NAME, ABILITY_ICON_ID, DENSITY_120_STR, USER_ID); in HWTEST_F()
312 * 2.GetIconById
320 dataMgr->GetIconById(BUNDLE_NAME, MODULE_NAME, ABILITY_ICON_ID, DENSITY_160_STR, USER_ID); in HWTEST_F()
328 * 2.GetIconById
336 dataMgr->GetIconById(BUNDLE_NAME, MODULE_NAME, ABILITY_ICON_ID, DENSITY_240_STR, USER_ID); in HWTEST_F()
344 * 2.GetIconById
352 dataMgr->GetIconById(BUNDLE_NAM in HWTEST_F()
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_permission_grant_test/
H A Dbms_bundle_permission_token_test.cpp216 * @tc.name: test GetIconById of BundleMgrHostImpl
218 * 2. GetIconById false by no permission
222 std::string retString = bundleMgrHostImpl_->GetIconById("", "", FLAGS, FLAGS, USERID); in HWTEST_F()
H A Dbms_bundle_permission_false_test.cpp921 * @tc.name: test GetIconById of BundleMgrHostImpl
923 * 2. GetIconById false by no permission
929 std::string ret = bundleMgrHostImpl_->GetIconById(BUNDLE_NAME, MOUDLE_NAME, resId, density, USERID); in HWTEST_F()
H A Dbms_bundle_permission_system_app_test.cpp703 * @tc.name: test GetIconById of BundleMgrHostImpl
705 * 2. GetIconById false by no permission
711 std::string ret = bundleMgrHostImpl_->GetIconById(BUNDLE_NAME, MOUDLE_NAME, resId, density, USERID); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/test/fuzztest/fuzztest_application/bundlemgrproxy_fuzzer/
H A Dbundlemgrproxy_fuzzer.cpp143 bundleMgrProxy.GetIconById(bundleName, moduleName, reinterpret_cast<uintptr_t>(data), in DoSomethingInterestingWithMyAPI()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/include/bundlemgr/
H A Dbundle_mgr_interface.h1282 virtual std::string GetIconById( in GetIconById() function in OHOS::AppExecFwk::IBundleMgr
H A Dbundle_mgr_proxy.h901 virtual std::string GetIconById(const std::string &bundleName, const std::string &moduleName,
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/
H A Dbundle_mgr_host_impl.h883 virtual std::string GetIconById(const std::string &bundleName, const std::string &moduleName,
H A Dbundle_data_mgr.h820 std::string GetIconById(
/foundation/bundlemanager/bundle_framework/services/bundlemgr/src/
H A Dbundle_mgr_host_impl.cpp3122 std::string BundleMgrHostImpl::GetIconById( in GetIconById() function in OHOS::AppExecFwk::BundleMgrHostImpl
3136 return dataMgr->GetIconById(bundleName, moduleName, resId, density, userId); in GetIconById()
H A Dbundle_data_mgr.cpp6081 std::string BundleDataMgr::GetIconById( in GetIconById() function in OHOS::AppExecFwk::BundleDataMgr
6084 APP_LOGI("GetIconById bundleName:%{public}s, moduleName:%{public}s, resId:%{public}d, density:%{public}d", in GetIconById()
6097 APP_LOGW("GetIconById failed, bundleName:%{public}s, id:%{public}d", bundleName.c_str(), resId); in GetIconById()
/foundation/bundlemanager/bundle_framework/test/systemtest/common/bms/acts_bms_kit_system_test/
H A Dacts_bms_kit_system_test.cpp6197 * 2.get GetIconById info successfully
6213 auto res = bundleMgrProxy->GetIconById(appName, BASE_MODULE_NAME, RESID, 0, USERID); in HWTEST_F()
6227 * 2.get GetIconById info failed by empty bundle name
6233 auto res = bundleMgrProxy->GetIconById("", BASE_MODULE_NAME, RESID, 0, USERID); in HWTEST_F()
6236 res = bundleMgrProxy->GetIconById(BASE_MODULE_NAME, "", RESID, 0, USERID); in HWTEST_F()
6239 res = bundleMgrProxy->GetIconById("", "", RESID, 0, USERID); in HWTEST_F()
/foundation/bundlemanager/bundle_framework/interfaces/inner_api/appexecfwk_core/src/bundlemgr/
H A Dbundle_mgr_host.cpp2709 std::string label = GetIconById(bundleName, moduleName, resId, density, userId); in HandleGetIconById()
H A Dbundle_mgr_proxy.cpp3266 std::string BundleMgrProxy::GetIconById( in GetIconById() function in OHOS::AppExecFwk::BundleMgrProxy
3269 APP_LOGD("begin to GetIconById"); in GetIconById()
3272 APP_LOGE("fail to GetIconById due to params empty"); in GetIconById()
3275 APP_LOGD("GetIconById bundleName: %{public}s, moduleName: %{public}s, resId:%{public}d", in GetIconById()
3279 APP_LOGE("fail to GetIconById due to write InterfaceToken fail"); in GetIconById()
3283 APP_LOGE("fail to GetIconById due to write bundleName fail"); in GetIconById()
3288 APP_LOGE("fail to GetIconById due to write moduleName fail"); in GetIconById()
3292 APP_LOGE("fail to GetIconById due to write resId fail"); in GetIconById()
3296 APP_LOGE("fail to GetIconById due to write density fail"); in GetIconById()
3300 APP_LOGE("fail to GetIconById du in GetIconById()
[all...]
/foundation/bundlemanager/bundle_tool/frameworks/src/
H A Dbundle_test_tool.cpp2169 // 'GetIconById' with no option: GetStringById in RunAsGetIconCommand()
2170 // 'GetIconById' with a wrong argument: GetStringById in RunAsGetIconCommand()
2191 results = bundleMgrProxy_->GetIconById(bundleName, moduleName, iconId, density, userId); in RunAsGetIconCommand()
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_manager_test/
H A Dbms_bundle_manager_test.cpp2786 retString = hostImpl->GetIconById("", "", resId, resId, USERID); in HWTEST_F()

Completed in 81 milliseconds