Lines Matching refs:image
30 /* magic string to find in the binary image */
367 Print(L"loaded image: %s\n", loaded_image_path);
1060 /* do not add an entry for an EFI image of architecture not matching with that of the image */
1610 EFI_HANDLE image;
1622 err = uefi_call_wrapper(BS->LoadImage, 6, FALSE, parent_image, path, NULL, 0, &image);
1638 err = uefi_call_wrapper(BS->OpenProtocol, 6, image, &LoadedImageProtocol, (VOID **)&loaded_image,
1650 err = uefi_call_wrapper(BS->StartImage, 3, image, NULL, NULL);
1652 uefi_call_wrapper(BS->UnloadImage, 1, image);
1692 EFI_STATUS efi_main(EFI_HANDLE image, EFI_SYSTEM_TABLE *sys_table) {
1705 InitializeLib(image, sys_table);
1716 err = uefi_call_wrapper(BS->OpenProtocol, 6, image, &LoadedImageProtocol, (VOID **)&loaded_image,
1717 image, NULL, EFI_OPEN_PROTOCOL_GET_PROTOCOL);
1724 /* export the device path this image is started from */
1736 /* the filesystem path to this image, to prevent adding ourselves to the menu */
1826 err = image_start(image, &config, entry);
1842 uefi_call_wrapper(BS->CloseProtocol, 4, image, &LoadedImageProtocol, image, NULL);