Lines Matching +full:de +full:- +full:be
16 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
25 .\" $Id: dwarf_child.3 3644 2018-10-15 19:55:01Z jkoshy $
106 current compilation unit will be returned.
109 may be used together to traverse the tree of debugging information
120 is non-zero, the function behaves identically to function
126 should be associated with a debugging information entry in the
138 current type unit will be returned.
166 is non-zero, the function will retrieve the debugging information
191 .Bl -tag -width ".Bq Er DW_DLV_NO_ENTRY"
196 Additional information about the error encountered will be recorded in
223 .Bd -literal -offset indent
226 Dwarf_Error de;
230 if (dwarf_next_cu_header(dbg, NULL, NULL, NULL, NULL, NULL, &de) !=
233 dwarf_errmsg(de));
237 if (dwarf_siblingof(dbg, die, &die0, &de) != DW_DLV_OK)
238 errx(EXIT_FAILURE, "dwarf_siblingof: %s", dwarf_errmsg(de));
242 if (dwarf_child(die, &die0, &de) != DW_DLV_OK)
243 errx(EXIT_FAILURE, "dwarf_child: %s", dwarf_errmsg(de));
248 if (dwarf_siblingof(dbg, die, &die0, &de) == DW_DLV_ERROR)
250 dwarf_errmsg(de));
255 .Bl -tag -width ".Bq Er DW_DLE_DIE_NO_CU_CONTEXT"