Home | History | Annotate | Download | only in libdw

Lines Matching refs:result

40 __libdw_offdie (Dwarf *dbg, Dwarf_Off offset, Dwarf_Die *result,
56 memset (result, '\0', sizeof (Dwarf_Die));
58 result->addr = (char *) data->d_buf + offset;
61 result->cu = __libdw_findcu (dbg, offset, debug_types);
62 if (result->cu == NULL)
66 result = NULL;
69 return result;
74 dwarf_offdie (Dwarf *dbg, Dwarf_Off offset, Dwarf_Die *result)
76 return __libdw_offdie (dbg, offset, result, false);
81 dwarf_offdie_types (Dwarf *dbg, Dwarf_Off offset, Dwarf_Die *result)
83 return __libdw_offdie (dbg, offset, result, true);