Home
last modified time | relevance | path

Searched refs:bigIconPath (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/src/
H A Dbundle_info_utils.cpp54 SetBundleInfoBigIconPath(des, src.bigIconPath); in CopyBundleInfo()
95 des->bigIconPath = src.bigIconPath; in CopyBundleInfoNoReplication()
175 bool BundleInfoUtils::SetBundleInfoBigIconPath(BundleInfo *bundleInfo, const char *bigIconPath) in SetBundleInfoBigIconPath() argument
177 if (bundleInfo == nullptr || bigIconPath == nullptr) { in SetBundleInfoBigIconPath()
181 AdapterFree(bundleInfo->bigIconPath); in SetBundleInfoBigIconPath()
182 bundleInfo->bigIconPath = Utils::Strdup(bigIconPath); in SetBundleInfoBigIconPath()
183 return bundleInfo->bigIconPath != nullptr; in SetBundleInfoBigIconPath()
H A Dbundle_info.cpp30 AdapterFree(bundleInfo->bigIconPath); in ClearBundleInfo()
H A Dconvert_utils.cpp262 (bundleInfo->bigIconPath != nullptr && in ConvertBundleInfoPartToJson()
263 …cJSON_AddStringToObject(root, BUNDLEINFO_JSON_KEY_ICONPATH, bundleInfo->bigIconPath) == nullptr) || in ConvertBundleInfoPartToJson()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dgt_bundle_extractor.cpp187 …const char *path, char **bundleName, char **label, char **smallIconPath, char **bigIconPath, uint8… in ExtractInstallMsg() argument
229 *bigIconPath = Utils::Strdup(bundleInfo->bigIconPath); in ExtractInstallMsg()
232 …if (*bundleName == nullptr || *label == nullptr || *smallIconPath == nullptr || *bigIconPath == nu… in ExtractInstallMsg()
H A Dgt_bundle_parser.cpp710 …char *bigIconPath = BundleUtil::Strscat(bigIconPathComp, sizeof(bigIconPathComp) / sizeof(char *)); in ConvertIconResToBundleInfo() local
711 if (bigIconPath == nullptr) { in ConvertIconResToBundleInfo()
718 AdapterFree(bigIconPath); in ConvertIconResToBundleInfo()
740 bool isBigIconExisted = BundleUtil::IsFile(bigIconPath); in ConvertIconResToBundleInfo()
744 AdapterFree(bigIconPath); in ConvertIconResToBundleInfo()
751 AdapterFree(bundleInfo->bigIconPath); in ConvertIconResToBundleInfo()
754 bundleInfo->bigIconPath = bigIconPath; in ConvertIconResToBundleInfo()
757 bundleInfo->bigIconPath = bigIconPngPath; in ConvertIconResToBundleInfo()
758 AdapterFree(bigIconPath); in ConvertIconResToBundleInfo()
H A Dgt_bundle_manager_service.cpp111 &(bundleInstallMsg_->bigIconPath), in Install()
521 if (bundleInstallMsg_->bigIconPath != nullptr) { in ClearSystemBundleInstallMsg()
522 AdapterFree(bundleInstallMsg_->bigIconPath); in ClearSystemBundleInstallMsg()
523 bundleInstallMsg_->bigIconPath = nullptr; in ClearSystemBundleInstallMsg()
1201 bundleInstallMsg->bigIconPath = bundleInstallMsg_->bigIconPath; in ReportInstallCallback()
H A Dbundle_map.cpp148 newBundleInfo.bigIconPath = bundleInfo->bigIconPath; in GetCopyBundleInfo()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/interfaces/kits/bundle_lite/
H A Dbundle_info.h93 char *bigIconPath; member
H A DREADME.md6 - `BundleInfo` application information, including, versionName, smallIconPath, bigIconPath, iconPat…
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dgt_bundle_extractor.h30 char **bigIconPath, uint8_t &actionService);
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/interfaces/inner_api/bundlemgr_lite/slite/
H A Dbundle_install_msg.h44 char *bigIconPath; member
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/frameworks/bundle_lite/include/
H A Dbundle_info_utils.h32 static bool SetBundleInfoBigIconPath(BundleInfo *bundleInfo, const char *bigIconPath);