Searched refs:firstAbilityJson (Results 1 – 2 of 2) sorted by relevance
/ohos5.0/foundation/bundlemanager/bundle_framework_lite/services/bundlemgr_lite/src/ |
H A D | gt_bundle_parser.cpp | 315 cJSON *firstAbilityJson = cJSON_GetArrayItem(abilityInfoObjects, 0); in ParseAbilityInfo() local 316 bundleProfile.label = ParseValue(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_LABEL); in ParseAbilityInfo() 327 int32_t labelId = ParseValue(firstAbilityJson, LABEL_ID, -1); in ParseAbilityInfo() 336 bundleProfile.iconPath = ParseValue(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_ICON); in ParseAbilityInfo() 341 int32_t iconId = ParseValue(firstAbilityJson, ICON_ID, -1); in ParseAbilityInfo() 346 if (cJSON_HasObjectItem(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_SRC_PATH)) { in ParseAbilityInfo() 347 bundleProfile.srcPath = ParseValue(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_SRC_PATH); in ParseAbilityInfo()
|
H A D | bundle_parser.cpp | 545 cJSON *firstAbilityJson = cJSON_GetArrayItem(abilityObjects, 0); in ParseAbilityInfos() local 546 if (cJSON_HasObjectItem(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_LABEL)) { in ParseAbilityInfos() 547 bundleProfile.label = ParseValue(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_LABEL); in ParseAbilityInfos() 553 if (cJSON_HasObjectItem(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_ICON)) { in ParseAbilityInfos() 554 bundleProfile.iconPath = ParseValue(firstAbilityJson, PROFILE_KEY_MODULE_ABILITY_ICON); in ParseAbilityInfos()
|