Home
last modified time | relevance | path

Searched refs:profileVersion (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/
H A Dgt_bundle_parser.cpp209 bundleProfile.profileVersion.versionName = ParseValue(object, PROFILE_KEY_VERSION_NAME); in ParseJsonInfo()
210 …CHECK_NULL(bundleProfile.profileVersion.versionName, ERR_APPEXECFWK_INSTALL_FAILED_PARSE_VERSIONNA… in ParseJsonInfo()
211 CHECK_LENGTH(strlen(bundleProfile.profileVersion.versionName), MAX_VERSION_NAME_LEN, in ParseJsonInfo()
214 bundleProfile.profileVersion.versionCode = ParseValue(object, PROFILE_KEY_VERSION_CODE, -1); in ParseJsonInfo()
215 if (bundleProfile.profileVersion.versionCode == -1) { in ParseJsonInfo()
887 bundleInfo->versionCode = bundleProfile.profileVersion.versionCode; in SetBundleInfo()
918 …!BundleInfoUtils::SetBundleInfoVersionName(bundleInfo, bundleProfile.profileVersion.versionName) || in SetBundleInfo()
H A Dbundle_parser.cpp339 bundleProfile.profileVersion.versionName = ParseValue(object, PROFILE_KEY_VERSION_NAME); in ParseJsonInfo()
340 …CHECK_NULL(bundleProfile.profileVersion.versionName, ERR_APPEXECFWK_INSTALL_FAILED_PARSE_VERSIONNA… in ParseJsonInfo()
341 CHECK_LENGTH(strlen(bundleProfile.profileVersion.versionName), MAX_VERSION_NAME_LEN, in ParseJsonInfo()
344 bundleProfile.profileVersion.versionCode = ParseValue(object, PROFILE_KEY_VERSION_CODE, -1); in ParseJsonInfo()
345 CHECK_IS_TRUE((bundleProfile.profileVersion.versionCode >= 0), in ParseJsonInfo()
H A Dbundle_info_creator.cpp116 bundleInfo->versionCode = bundleProfile.profileVersion.versionCode; in SetBundleInfo()
153 …!BundleInfoUtils::SetBundleInfoVersionName(bundleInfo, bundleProfile.profileVersion.versionName) || in SetBundleInfo()
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/include/
H A Dbundle_common.h244 ProfileVersion profileVersion; member