Home
last modified time | relevance | path

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

/xnu-12377.41.6/libkern/kxld/
H A Dkxld_util.c295 struct symtab_command *symtab_hdr = NULL; in validate_and_swap_macho_32() local
417 symtab_hdr = (struct symtab_command *) load_hdr; in validate_and_swap_macho_32()
420 swap_symtab_command(symtab_hdr, host_order); in validate_and_swap_macho_32()
426 symtab_hdr->symoff + symtab_hdr->nsyms * sizeof(*symtab), finish, in validate_and_swap_macho_32()
431 require_action(size >= symtab_hdr->stroff + symtab_hdr->strsize, finish, in validate_and_swap_macho_32()
437 symtab = (struct nlist *) ((void *) (file + symtab_hdr->symoff)); in validate_and_swap_macho_32()
439 swap_nlist(symtab, symtab_hdr->nsyms, host_order); in validate_and_swap_macho_32()
476 struct symtab_command *symtab_hdr = NULL; in validate_and_swap_macho_64() local
597 symtab_hdr = (struct symtab_command *) load_hdr; in validate_and_swap_macho_64()
600 swap_symtab_command(symtab_hdr, host_order); in validate_and_swap_macho_64()
[all …]
H A Dkxld_object.c582 struct symtab_command *symtab_hdr = NULL; in init_from_final_linked_image() local
713 symtab_hdr = (struct symtab_command *) cmd_hdr; in init_from_final_linked_image()
805 *symtab_hdr_out = symtab_hdr; in init_from_final_linked_image()
819 struct symtab_command *symtab_hdr = NULL; in init_from_execute() local
840 rval = init_from_final_linked_image(object, &filetype, &symtab_hdr); in init_from_execute()
859 object->symtab, symtab_hdr, my_file, kernel_linkedit_seg); in init_from_execute()
908 struct symtab_command *symtab_hdr = NULL; in init_from_bundle() local
925 rval = init_from_final_linked_image(object, &filetype, &symtab_hdr); in init_from_bundle()
933 object->symtab, symtab_hdr, my_file, in init_from_bundle()
959 struct symtab_command *symtab_hdr = NULL; in init_from_object() local
[all …]