/src/sys/arch/x68k/stand/boot_ufs/ |
bootmain.c | 72 static int load_file (const char*, unsigned int, struct exec *); 207 load_file(const char *path, unsigned int addr, struct exec *header) function in typeref:typename:int 337 size = load_file("boot", BOOT_TEXTADDR, &header); 354 size = load_file("netbsd", 0x6000, &header);
|
/src/sys/stand/efiboot/ |
efiboot.h | 118 int load_file(const char *, u_long, bool, EFI_PHYSICAL_ADDRESS *, u_long *);
|
efifdt.c | 544 if (load_file(path, 0, false, &dtbo_addr, &dtbo_size) != 0 || 578 if (load_file(path, 0, false, &addr, &size) != 0 || addr == 0 || size == 0) 603 load_file(get_initrd_path(), 0, false, &initrd_addr, &initrd_size); 604 load_file(get_dtb_path(), 0, false, &dtb_addr, &dtb_size); 630 load_file(get_rndseed_path(), 0, false,
|
exec.c | 51 load_file(const char *path, u_long extra, bool quiet_errors, function in typeref:typename:int
|
/src/sys/arch/hppa/stand/xxboot/ |
main.c | 44 void load_file(const char *, uintptr_t /*loadadr*/, unsigned /*interactive*/, 289 load_file(str_boot1, loadadr, interactive, part); /* "boot.hp700" */ 290 load_file(str_boot2, loadadr, interactive, part); /* "boot" */ 291 load_file(str_boot3, loadadr, interactive, part); /* "usr/mdec/boot" */ 297 load_file(const char *path, uintptr_t loadadr, unsigned interactive, int part) function in typeref:typename:void
|