Lines Matching full:error
26 /* The error number. */
32 /* The error number. Used in non-threaded programs. */
74 [DWARF_E_NOERROR] = N_("no error"),
75 [DWARF_E_UNKNOWN_ERROR] = N_("unknown error"),
78 [DWARF_E_IO_ERROR] = N_("I/O error"),
131 dwarf_errmsg (error)
132 int error;
140 if ((error == 0 || error == -1) && threaded)
148 if (error == 0)
150 else if (error < -1 || error >= (int) nerrmsgs)
153 return _(errmsgs[error == -1 ? last_error : error]);