Symbol: efi_map_header
sbin/sysctl/sysctl.c
794
struct efi_map_header *efihdr;
sbin/sysctl/sysctl.c
827
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
stand/efi/loader/bootinfo.c
181
struct efi_map_header *efihdr;
stand/efi/loader/bootinfo.c
217
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
stand/efi/loader/bootinfo.c
278
efihdr = (struct efi_map_header *)(uintptr_t)addr;
stand/kboot/include/efi.h
21
void foreach_efi_map_entry(struct efi_map_header *efihdr, efi_map_entry_cb cb, void *argp);
stand/kboot/include/efi.h
22
void print_efi_map(struct efi_map_header *efihdr);
stand/kboot/kboot/arch/aarch64/exec.c
250
roundup2(sizeof(struct efi_map_header), 16) - fp->f_addr;
stand/kboot/kboot/arch/aarch64/exec.c
253
trampoline_data->memmap_len = efi_map_size - roundup2(sizeof(struct efi_map_header), 16);
stand/kboot/kboot/arch/amd64/elf64_freebsd.c
438
roundup2(sizeof(struct efi_map_header), 16); /* Skip header */
stand/kboot/kboot/arch/amd64/elf64_freebsd.c
441
trampoline_data->memmap_len = efi_map_size - roundup2(sizeof(struct efi_map_header), 16);
stand/kboot/libkboot/efi.c
127
efi_map_hdr = (struct efi_map_header *)buf;
stand/kboot/libkboot/efi.c
16
struct efi_map_header *efi_map_hdr;
stand/kboot/libkboot/efi.c
160
foreach_efi_map_entry(struct efi_map_header *efihdr, efi_map_entry_cb cb, void *argp)
stand/kboot/libkboot/efi.c
170
efisz = roundup2(sizeof(struct efi_map_header), 16);
stand/kboot/libkboot/efi.c
240
print_efi_map(struct efi_map_header *efihdr)
stand/kboot/libkboot/efi.c
63
efi_map_hdr = (struct efi_map_header *)buf;
sys/amd64/amd64/machdep.c
1671
struct efi_map_header *efihdr;
sys/amd64/amd64/machdep.c
1674
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/amd64/amd64/machdep.c
725
add_efi_map_entries(struct efi_map_header *efihdr, vm_paddr_t *physmap,
sys/amd64/amd64/machdep.c
755
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
sys/amd64/amd64/machdep.c
830
struct efi_map_header *efihdr;
sys/amd64/amd64/machdep.c
832
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/arm/arm/machdep.c
439
struct efi_map_header *efihdr;
sys/arm/arm/machdep.c
475
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/arm/include/machdep.h
47
struct efi_map_header;
sys/arm/include/machdep.h
49
void arm_add_efi_map_entries(struct efi_map_header *efihdr,
sys/arm64/arm64/machdep.c
156
static struct efi_map_header *efihdr;
sys/arm64/arm64/machdep.c
733
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
sys/arm64/arm64/machdep.c
828
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/dev/efidev/efirt.c
177
struct efi_map_header *efihdr;
sys/dev/efidev/efirt.c
209
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/dev/efidev/efirt.c
216
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
sys/kern/subr_efi_map.c
103
efi_map_add_entries(struct efi_map_header *efihdr)
sys/kern/subr_efi_map.c
110
efi_map_exclude_entries(struct efi_map_header *efihdr)
sys/kern/subr_efi_map.c
17
efi_map_foreach_entry(struct efi_map_header *efihdr, efi_map_entry_cb cb, void *argp)
sys/kern/subr_efi_map.c
172
efi_map_print_entries(struct efi_map_header *efihdr)
sys/kern/subr_efi_map.c
27
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
sys/riscv/riscv/machdep.c
560
struct efi_map_header *efihdr;
sys/riscv/riscv/machdep.c
589
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/sys/efi_map.h
15
struct efi_map_header;
sys/sys/efi_map.h
19
void efi_map_foreach_entry(struct efi_map_header *efihdr, efi_map_entry_cb cb,
sys/sys/efi_map.h
22
void efi_map_add_entries(struct efi_map_header *efihdr);
sys/sys/efi_map.h
23
void efi_map_exclude_entries(struct efi_map_header *efihdr);
sys/sys/efi_map.h
24
void efi_map_print_entries(struct efi_map_header *efihdr);