Lines Matching refs:printf
80 printf("This PE file does not have any sections, unsupported.\n"); in load_sections_and_execute()
85 printf("Section %s requires relocation, which is not supported.\n", in load_sections_and_execute()
110 printf("Relocating image from 0x%llx to %p\n", optional_header->ImageBase, in load_sections_and_execute()
115 printf("Entry function located at %p\n", entry); in load_sections_and_execute()
140 printf("platform_setup_system_table failed: %lu\n", status); in load_sections_and_execute()
145 printf("efi_initialize_system_table_pointer failed: %lu\n", status); in load_sections_and_execute()
157 printf("Calling kernel with stack [%p, %p]\n", stack, stack + kStackSize - 1); in load_sections_and_execute()
168 printf("Usage: %s <name of block device to load from>\n", argv[0].str); in cmd_uefi_load()
177 printf("Usage: %s <variable> <data>\n", argv[0].str); in cmd_uefi_set_variable()
207 printf("error opening block device %s\n", blkdev); in load_pe_file()
225 printf("DOS Magic check failed %x\n", dos_header->e_magic); in load_pe_file()
229 printf( in load_pe_file()
237 printf("COFF Magic check failed %x\n", LE32(file_header->Signature)); in load_pe_file()
240 printf("PE header machine type: %x\n", in load_pe_file()
246 printf("Unexpected size of optional header %d, expected %zu\n", in load_pe_file()
252 printf("Unsupported Subsystem type: %d %s\n", optional_header->Subsystem, in load_pe_file()
255 printf("Valid UEFI application found.\n"); in load_pe_file()
257 printf("UEFI Application return code: %d\n", ret); in load_pe_file()