Home
last modified time | relevance | path

Searched refs:images (Results 1 – 8 of 8) sorted by relevance

/base/update/updater/resources/
DBUILD.gn90 "${product_name}/images/icon/darkOUCOHlogo.png",
91 "${product_name}/images/icon/lightOUCOHlogo.png",
92 "${product_name}/images/icon/icon_failed.png",
93 "${product_name}/images/icon/icon_ok.png",
94 "${product_name}/images/warn/tips.png",
95 "${product_name}/images/progress/dark_flash_00000.png",
96 "${product_name}/images/progress/dark_flash_00001.png",
97 "${product_name}/images/progress/dark_flash_00002.png",
98 "${product_name}/images/progress/dark_flash_00003.png",
99 "${product_name}/images/progress/dark_flash_00004.png",
[all …]
/base/startup/hvb/
DREADME.md5 …onent is used to verify and authenticate system images to make sure OpenHarmony is running system
19 …ll be integrated by Bootloader to verify initial images, and integrated by init to verify system i…
20 - hvbtool is used to sign system images, it will be integrated by Building system.
/base/startup/hvb/libhvb/src/auth/
Dhvb.c44 vd->images = hvb_calloc(sizeof(struct hvb_image_data) * HVB_MAX_NUMBER_OF_LOADED_IMAGES); in hvb_init_verified_data()
45 if (!vd->images) { in hvb_init_verified_data()
58 hvb_free(vd->images); in hvb_init_verified_data()
105 struct hvb_image_data *p = vd->images; in hvb_get_partition_image()
311 for (n = 0; n < vd->num_loaded_images && vd->images; n++) { in hvb_chain_verify_data_free()
312 if (vd->images[n].data.addr != NULL) in hvb_chain_verify_data_free()
313 hvb_free(vd->images[n].data.addr); in hvb_chain_verify_data_free()
315 if (vd->images[n].partition_name != NULL) in hvb_chain_verify_data_free()
316 hvb_free(vd->images[n].partition_name); in hvb_chain_verify_data_free()
319 if (vd->images != NULL) { in hvb_chain_verify_data_free()
[all …]
/base/update/updater/
Dupdater_ux_guide.md327 页面配置完成后,需要对资源images目录进行初始化。json文件中图片控件的resPath字段会配置为图片在设备上的路径,该路径下的资源来源于如下表格中的目录。如果需要更换这些图片资源,在此目录下…
332 | resources/rk3568/images/icon | 主菜单LOGO图片资源 | 使用默认 |
333 | resources/rk3568/images/progress | 进度条图片资源 | 使用默认 |
334 | resources/rk3568/images/warn | 警告图片资源,升级过程中操作不当会触发警告 | 使用默认 |
337 images目录适配完成后,需要适配同级目录的string文件夹。提示语通过配置文件string.json进行管理。支持中英文和西班牙语。文本控件以id形式组成一个列表。可以修改提示语值,也可以使用…
/base/startup/hvb/libhvb/include/
Dhvb.h71 struct hvb_image_data *images; member
/base/security/selinux_adapter/
DREADME.md8 ![整体架构](docs/images/update.png)
16 │   └── images
DREADME-en.md9 ![Overall architecture](docs/images/SELinux.png)
17 │   └── images
/base/startup/hvb/libhvb/src/cert/
Dhvb_cert.c144 image = &vd->images[vd->num_loaded_images++]; in hash_image_init_desc()