Lines Matching refs:error
39 /* The error number. */
57 [DWARF_E_NOERROR] = N_("no error"),
58 [DWARF_E_UNKNOWN_ERROR] = N_("unknown error"),
61 [DWARF_E_IO_ERROR] = N_("I/O error"),
119 dwarf_errmsg (int error)
123 if (error == 0)
125 else if (error < -1 || error >= (int) nerrmsgs)
128 return _(errmsgs[error == -1 ? last_error : error]);