Searched refs:images_noffset (Results 1 – 6 of 6) sorted by relevance
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | image-fit.c | 132 int fit_get_subimage_count(const void *fit, int images_noffset) in fit_get_subimage_count() argument 140 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count() 168 int images_noffset; in fit_print_contents() local 198 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_print_contents() 199 if (images_noffset < 0) { in fit_print_contents() 201 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_print_contents() 207 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_print_contents() 568 int noffset, images_noffset; in fit_image_get_node() local 570 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_image_get_node() 571 if (images_noffset < 0) { in fit_image_get_node() [all …]
|
| H A D | update.c | 235 int images_noffset, ndepth, noffset; in update_tftp() local 290 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in update_tftp() 293 noffset = fdt_next_node(fit, images_noffset, &ndepth); in update_tftp()
|
| /OK3568_Linux_fs/u-boot/tools/ |
| H A D | image-host.c | 685 int images_noffset, confs_noffset; in fit_add_verification_data() local 690 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_add_verification_data() 691 if (images_noffset < 0) { in fit_add_verification_data() 693 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_add_verification_data() 694 return images_noffset; in fit_add_verification_data() 698 for (noffset = fdt_first_subnode(fit, images_noffset); in fit_add_verification_data()
|
| H A D | fit_image.c | 818 int images_noffset; in fit_extract_contents() local 834 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in fit_extract_contents() 835 if (images_noffset < 0) { in fit_extract_contents() 837 FIT_IMAGES_PATH, fdt_strerror(images_noffset)); in fit_extract_contents() 842 count = fit_get_subimage_count(fit, images_noffset); in fit_extract_contents() 850 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents()
|
| /OK3568_Linux_fs/u-boot/common/spl/ |
| H A D | spl_fit.c | 463 int images_noffset; in spl_load_kernel_fit() local 520 images_noffset = fdt_path_offset(fit, FIT_IMAGES_PATH); in spl_load_kernel_fit() 521 if (images_noffset < 0) { in spl_load_kernel_fit() 523 __func__, images_noffset); in spl_load_kernel_fit() 524 return images_noffset; in spl_load_kernel_fit() 528 node = spl_fit_get_image_node(fit, images_noffset, in spl_load_kernel_fit()
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | image.h | 970 int fit_get_subimage_count(const void *fit, int images_noffset);
|