Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libdwarf/common/
H A Ddwarf_elfread.c596 dwarf_elf_object_access_internals_t *intfc = 0; in _dwarf_elf_nlsetup() local
620 intfc = binary_interface->object; in _dwarf_elf_nlsetup()
621 intfc->f_path = strdup(true_path); in _dwarf_elf_nlsetup()
650 dwarf_elf_object_access_internals_t * intfc = internals; in _dwarf_elf_object_access_internals_init() local
666 intfc->f_ident[0] = 'F'; in _dwarf_elf_object_access_internals_init()
667 intfc->f_ident[1] = '1'; in _dwarf_elf_object_access_internals_init()
668 intfc->f_fd = fd; in _dwarf_elf_object_access_internals_init()
669 intfc->f_is_64bit = ((offsetsize==64)?TRUE:FALSE); in _dwarf_elf_object_access_internals_init()
670 intfc->f_offsetsize = offsetsize; in _dwarf_elf_object_access_internals_init()
671 intfc->f_pointersize = offsetsize; in _dwarf_elf_object_access_internals_init()
[all …]
H A Ddwarf_machoread.c781 dwarf_macho_object_access_internals_t *intfc = 0; in _dwarf_macho_setup() local
805 intfc = binary_interface->object; in _dwarf_macho_setup()
806 intfc->mo_path = strdup(true_path); in _dwarf_macho_setup()
834 dwarf_macho_object_access_internals_t * intfc = internals; in _dwarf_macho_object_access_internals_init() local
850 intfc->mo_ident[0] = 'M'; in _dwarf_macho_object_access_internals_init()
851 intfc->mo_ident[1] = '1'; in _dwarf_macho_object_access_internals_init()
852 intfc->mo_fd = fd; in _dwarf_macho_object_access_internals_init()
853 intfc->mo_is_64bit = ((offsetsize==64)?TRUE:FALSE); in _dwarf_macho_object_access_internals_init()
854 intfc->mo_offsetsize = offsetsize; in _dwarf_macho_object_access_internals_init()
855 intfc->mo_pointersize = offsetsize; in _dwarf_macho_object_access_internals_init()
[all …]
H A Ddwarf_peread.c779 dwarf_pe_object_access_internals_t * intfc = internals; in _dwarf_pe_object_access_internals_init() local
793 intfc->pe_ident[0] = 'P'; in _dwarf_pe_object_access_internals_init()
794 intfc->pe_ident[1] = '1'; in _dwarf_pe_object_access_internals_init()
795 intfc->pe_fd = fd; in _dwarf_pe_object_access_internals_init()
796 intfc->pe_is_64bit = ((offsetsize==64)?TRUE:FALSE); in _dwarf_pe_object_access_internals_init()
797 intfc->pe_offsetsize = offsetsize; in _dwarf_pe_object_access_internals_init()
798 intfc->pe_pointersize = offsetsize; in _dwarf_pe_object_access_internals_init()
799 intfc->pe_filesize = filesize; in _dwarf_pe_object_access_internals_init()
800 intfc->pe_ftype = ftype; in _dwarf_pe_object_access_internals_init()
805 intfc->pe_copy_word = _dwarf_memcpy_swap_bytes; in _dwarf_pe_object_access_internals_init()
[all …]
H A Ddwarf_elf_access.c1077 Dwarf_Obj_Access_Interface *intfc = 0; in dwarf_elf_object_access_init() local
1094 intfc = malloc(sizeof(Dwarf_Obj_Access_Interface)); in dwarf_elf_object_access_init()
1095 if (!intfc) { in dwarf_elf_object_access_init()
1102 intfc->object = internals; in dwarf_elf_object_access_init()
1103 intfc->methods = &dwarf_elf_object_access_methods; in dwarf_elf_object_access_init()
1110 *ret_obj = intfc; in dwarf_elf_object_access_init()