Symbol: preloaded_file
stand/boot/common/boot.c
54
struct preloaded_file *fp;
stand/boot/common/bootstrap.h
190
struct preloaded_file;
stand/boot/common/bootstrap.h
198
struct preloaded_file *m_fp;
stand/boot/common/bootstrap.h
223
struct preloaded_file *f_next; /* next file */
stand/boot/common/bootstrap.h
229
int (* l_load)(char *filename, u_int64_t dest, struct preloaded_file **result);
stand/boot/common/bootstrap.h
231
int (* l_exec)(struct preloaded_file *mp);
stand/boot/common/bootstrap.h
235
extern struct preloaded_file *preloaded_files;
stand/boot/common/bootstrap.h
240
struct preloaded_file *file_alloc(void);
stand/boot/common/bootstrap.h
241
struct preloaded_file *file_findfile(char *name, char *type);
stand/boot/common/bootstrap.h
242
struct file_metadata *file_findmetadata(struct preloaded_file *fp, int type);
stand/boot/common/bootstrap.h
243
void file_discard(struct preloaded_file *fp);
stand/boot/common/bootstrap.h
244
void file_addmetadata(struct preloaded_file *fp, int type, size_t size, void *p);
stand/boot/common/bootstrap.h
245
int file_addmodule(struct preloaded_file *fp, char *modname, int version,
stand/boot/common/bootstrap.h
261
int __elfN(loadfile)(char *filename, u_int64_t dest, struct preloaded_file **result);
stand/boot/common/bootstrap.h
263
struct preloaded_file **result);
stand/boot/common/load_elf.c
239
*result = (struct preloaded_file *)fp;
stand/boot/common/load_elf.c
259
__elfN(loadimage)(struct preloaded_file *fp, elf_file_t ef, u_int64_t off)
stand/boot/common/load_elf.c
586
__elfN(parse_modmetadata)(struct preloaded_file *fp, elf_file_t ef)
stand/boot/common/load_elf.c
685
__elfN(lookup_symbol)(struct preloaded_file *fp, elf_file_t ef, const char* name,
stand/boot/common/load_elf.c
73
static int __elfN(loadimage)(struct preloaded_file *mp, elf_file_t ef, u_int64_t loadaddr);
stand/boot/common/load_elf.c
733
__elfN(reloc_ptr)(struct preloaded_file *mp, elf_file_t ef,
stand/boot/common/load_elf.c
74
static int __elfN(lookup_symbol)(struct preloaded_file *mp, elf_file_t ef, const char* name, Elf_Sym* sym);
stand/boot/common/load_elf.c
75
static int __elfN(reloc_ptr)(struct preloaded_file *mp, elf_file_t ef,
stand/boot/common/load_elf.c
77
static int __elfN(parse_modmetadata)(struct preloaded_file *mp, elf_file_t ef);
stand/boot/common/load_elf.c
92
__elfN(loadfile)(char *filename, u_int64_t dest, struct preloaded_file **result)
stand/boot/common/load_elf.c
94
struct preloaded_file *fp, *kfp;
stand/boot/common/load_elf_obj.c
168
*result = (struct preloaded_file *)fp;
stand/boot/common/load_elf_obj.c
189
__elfN(obj_loadimage)(struct preloaded_file *fp, elf_file_t ef, u_int64_t off)
stand/boot/common/load_elf_obj.c
322
__elfN(obj_parse_modmetadata)(struct preloaded_file *fp, elf_file_t ef)
stand/boot/common/load_elf_obj.c
393
__elfN(obj_lookup_set)(struct preloaded_file *fp, elf_file_t ef,
stand/boot/common/load_elf_obj.c
431
__elfN(obj_reloc_ptr)(struct preloaded_file *mp, elf_file_t ef, Elf_Addr p,
stand/boot/common/load_elf_obj.c
63
static int __elfN(obj_loadimage)(struct preloaded_file *mp, elf_file_t ef,
stand/boot/common/load_elf_obj.c
65
static int __elfN(obj_lookup_set)(struct preloaded_file *mp, elf_file_t ef,
stand/boot/common/load_elf_obj.c
67
static int __elfN(obj_reloc_ptr)(struct preloaded_file *mp, elf_file_t ef,
stand/boot/common/load_elf_obj.c
69
static int __elfN(obj_parse_modmetadata)(struct preloaded_file *mp,
stand/boot/common/load_elf_obj.c
83
struct preloaded_file **result)
stand/boot/common/load_elf_obj.c
85
struct preloaded_file *fp, *kfp;
stand/boot/common/module.c
166
struct preloaded_file *fp;
stand/boot/common/module.c
252
struct preloaded_file *fp;
stand/boot/common/module.c
307
file_load(char *filename, vm_offset_t dest, struct preloaded_file **result)
stand/boot/common/module.c
309
struct preloaded_file *fp;
stand/boot/common/module.c
333
file_load_dependencies(struct preloaded_file *base_file)
stand/boot/common/module.c
336
struct preloaded_file *fp;
stand/boot/common/module.c
389
struct preloaded_file *fp;
stand/boot/common/module.c
506
struct preloaded_file *fp, *last_file;
stand/boot/common/module.c
56
static int file_load(char *filename, vm_offset_t dest, struct preloaded_file **result);
stand/boot/common/module.c
562
struct preloaded_file *
stand/boot/common/module.c
565
struct preloaded_file *fp;
stand/boot/common/module.c
58
static int file_load_dependencies(struct preloaded_file *base_mod);
stand/boot/common/module.c
588
file_findmodule(struct preloaded_file *fp, char *modname,
stand/boot/common/module.c
60
static struct kernel_module * file_findmodule(struct preloaded_file *fp, char *modname, struct mod_depend *verinfo);
stand/boot/common/module.c
627
file_addmetadata(struct preloaded_file *fp, int type, size_t size, void *p)
stand/boot/common/module.c
63
static void file_insert_tail(struct preloaded_file *mp);
stand/boot/common/module.c
643
file_findmetadata(struct preloaded_file *fp, int type)
stand/boot/common/module.c
76
struct preloaded_file *preloaded_files = NULL;
stand/boot/common/module.c
867
file_addmodule(struct preloaded_file *fp, char *modname, int version,
stand/boot/common/module.c
896
file_discard(struct preloaded_file *fp)
stand/boot/common/module.c
937
struct preloaded_file *
stand/boot/common/module.c
940
struct preloaded_file *fp;
stand/boot/common/module.c
942
if ((fp = malloc(sizeof(struct preloaded_file))) != NULL) {
stand/boot/common/module.c
943
bzero(fp, sizeof(struct preloaded_file));
stand/boot/common/module.c
952
file_insert_tail(struct preloaded_file *fp)
stand/boot/common/module.c
954
struct preloaded_file *cm;
stand/boot/efi/loader/arch/x86_64/elf64_freebsd.c
180
elf64_obj_exec(struct preloaded_file *fp)
stand/boot/efi/loader/arch/x86_64/elf64_freebsd.c
52
static int elf64_exec(struct preloaded_file *amp);
stand/boot/efi/loader/arch/x86_64/elf64_freebsd.c
53
static int elf64_obj_exec(struct preloaded_file *amp);
stand/boot/efi/loader/arch/x86_64/elf64_freebsd.c
89
elf64_exec(struct preloaded_file *fp)
stand/boot/efi/loader/bootinfo.c
209
struct preloaded_file *fp;
stand/boot/efi/loader/bootinfo.c
234
bi_load_efi_data(struct preloaded_file *kfp)
stand/boot/efi/loader/bootinfo.c
345
struct preloaded_file *xp, *kfp;
stand/boot/pc32/libi386/biossmap.c
123
bios_addsmapdata(struct preloaded_file *kfp)
stand/boot/pc32/libi386/bootinfo32.c
102
struct preloaded_file *fp;
stand/boot/pc32/libi386/bootinfo32.c
136
struct preloaded_file *xp, *kfp;
stand/boot/pc32/libi386/bootinfo64.c
103
struct preloaded_file *fp;
stand/boot/pc32/libi386/bootinfo64.c
179
struct preloaded_file *xp, *kfp;
stand/boot/pc32/libi386/elf32_freebsd.c
42
static int elf32_exec(struct preloaded_file *amp);
stand/boot/pc32/libi386/elf32_freebsd.c
43
static int elf32_obj_exec(struct preloaded_file *amp);
stand/boot/pc32/libi386/elf32_freebsd.c
54
elf32_exec(struct preloaded_file *fp)
stand/boot/pc32/libi386/elf32_freebsd.c
81
elf32_obj_exec(struct preloaded_file *fp)
stand/boot/pc32/libi386/elf64_freebsd.c
123
elf64_obj_exec(struct preloaded_file *fp)
stand/boot/pc32/libi386/elf64_freebsd.c
43
static int elf64_exec(struct preloaded_file *amp);
stand/boot/pc32/libi386/elf64_freebsd.c
44
static int elf64_obj_exec(struct preloaded_file *amp);
stand/boot/pc32/libi386/elf64_freebsd.c
72
elf64_exec(struct preloaded_file *fp)
stand/boot/pc32/libi386/libi386.h
114
struct preloaded_file;
stand/boot/pc32/libi386/libi386.h
115
void bios_addsmapdata(struct preloaded_file *);