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
227
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
stand/efi/loader/bootinfo.c
277
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
1714
struct efi_map_header *efihdr;
sys/amd64/amd64/machdep.c
1717
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/amd64/amd64/machdep.c
732
add_efi_map_entries(struct efi_map_header *efihdr, vm_paddr_t *physmap,
sys/amd64/amd64/machdep.c
762
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
sys/amd64/amd64/machdep.c
837
struct efi_map_header *efihdr;
sys/amd64/amd64/machdep.c
839
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/arm/arm/machdep.c
438
struct efi_map_header *efihdr;
sys/arm/arm/machdep.c
474
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
159
static struct efi_map_header *efihdr;
sys/arm64/arm64/machdep.c
735
efisz = (sizeof(struct efi_map_header) + 0xf) & ~0xf;
sys/arm64/arm64/machdep.c
830
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/dev/efidev/efirt.c
176
struct efi_map_header *efihdr;
sys/dev/efidev/efirt.c
207
efihdr = (struct efi_map_header *)preload_search_info(preload_kmdp,
sys/dev/efidev/efirt.c
214
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
561
struct efi_map_header *efihdr;
sys/riscv/riscv/machdep.c
590
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);