Lines Matching refs:image
67 struct efi_device_path *image, *device; in calculate_paths() local
78 ret = efi_dp_from_name(dev, devnr, path, &device, &image); in calculate_paths()
83 if (image) { in calculate_paths()
85 struct efi_device_path *image_tmp = image; in calculate_paths()
87 efi_dp_split_file_path(image, &device, &image); in calculate_paths()
90 *image_pathp = image; in calculate_paths()
92 if (image) in calculate_paths()
93 log_debug("- image %pD\n", image); in calculate_paths()
218 static efi_status_t efi_binary_run_dp(void *image, size_t size, void *fdt, in efi_binary_run_dp() argument
241 return efi_run_image(image, size, dp_dev, dp_img); in efi_binary_run_dp()
258 efi_status_t efi_binary_run(void *image, size_t size, void *fdt, void *initrd, size_t initrd_sz) in efi_binary_run() argument
272 (uintptr_t)image, size); in efi_binary_run()
289 ret = efi_binary_run_dp(image, size, fdt, initrd, initrd_sz, bootefi_device_path, in efi_binary_run()
336 struct efi_device_path *device, *image; in efi_bootflow_run() local
360 &image); in efi_bootflow_run()
371 ret = efi_binary_run_dp(bflow->buf, bflow->size, fdt, NULL, 0, device, image); in efi_bootflow_run()