Lines Matching refs:intfc

781     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()
856 intfc->mo_filesize = filesize; in _dwarf_macho_object_access_internals_init()
857 intfc->mo_ftype = ftype; in _dwarf_macho_object_access_internals_init()
861 intfc->mo_copy_word = _dwarf_memcpy_swap_bytes; in _dwarf_macho_object_access_internals_init()
862 intfc->mo_endian = DW_OBJECT_LSB; in _dwarf_macho_object_access_internals_init()
864 intfc->mo_copy_word = _dwarf_memcpy_noswap_bytes; in _dwarf_macho_object_access_internals_init()
865 intfc->mo_endian = DW_OBJECT_MSB; in _dwarf_macho_object_access_internals_init()
869 intfc->mo_copy_word = _dwarf_memcpy_noswap_bytes; in _dwarf_macho_object_access_internals_init()
870 intfc->mo_endian = DW_OBJECT_LSB; in _dwarf_macho_object_access_internals_init()
872 intfc->mo_copy_word = _dwarf_memcpy_swap_bytes; in _dwarf_macho_object_access_internals_init()
873 intfc->mo_endian = DW_OBJECT_MSB; in _dwarf_macho_object_access_internals_init()
876 res = dwarf_load_macho_header(intfc,errcode); in _dwarf_macho_object_access_internals_init()
878 localdoas->object = intfc; in _dwarf_macho_object_access_internals_init()
884 res = dwarf_load_macho_commands(intfc,errcode); in _dwarf_macho_object_access_internals_init()
887 localdoas->object = intfc; in _dwarf_macho_object_access_internals_init()
891 sp = intfc->mo_dwarf_sections+1; in _dwarf_macho_object_access_internals_init()
892 for(i = 1; i < intfc->mo_dwarf_sectioncount ; ++i,++sp) { in _dwarf_macho_object_access_internals_init()
922 Dwarf_Obj_Access_Interface *intfc = 0; in _dwarf_macho_object_access_init() local
941 intfc = malloc(sizeof(Dwarf_Obj_Access_Interface)); in _dwarf_macho_object_access_init()
942 if (!intfc) { in _dwarf_macho_object_access_init()
949 intfc->object = internals; in _dwarf_macho_object_access_init()
950 intfc->methods = &macho_methods; in _dwarf_macho_object_access_init()
951 *binary_interface = intfc; in _dwarf_macho_object_access_init()