Home
last modified time | relevance | path

Searched refs:dysymtabhdr (Results 1 – 1 of 1) sorted by relevance

/xnu-8019.80.24/libkern/kxld/
H A Dkxld_reloc.c599 struct dysymtab_command *dysymtabhdr = NULL; in kxld_reloc_export_macho() local
611 require_action(sizeof(*dysymtabhdr) <= header_size - *header_offset, finish, rval = KERN_FAILURE); in kxld_reloc_export_macho()
612 dysymtabhdr = (struct dysymtab_command *) ((void *) (buf + *header_offset)); in kxld_reloc_export_macho()
613 *header_offset += sizeof(*dysymtabhdr); in kxld_reloc_export_macho()
636 memset(dysymtabhdr, 0, sizeof(*dysymtabhdr)); in kxld_reloc_export_macho()
637 dysymtabhdr->cmd = LC_DYSYMTAB; in kxld_reloc_export_macho()
638 dysymtabhdr->cmdsize = (uint32_t) sizeof(*dysymtabhdr); in kxld_reloc_export_macho()
639 dysymtabhdr->locreloff = (uint32_t) *data_offset; in kxld_reloc_export_macho()
640 dysymtabhdr->nlocrel = (uint32_t) count; in kxld_reloc_export_macho()
647 (void *) dysymtabhdr, in kxld_reloc_export_macho()
[all …]