Lines Matching refs:error
42 /* The error number. */
55 /* Return the appropriate message for the error. */
59 N_("no error")
61 #define ELF_E_UNKNOWN_ERROR_IDX (ELF_E_NOERROR_IDX + sizeof "no error")
62 N_("unknown error")
65 (ELF_E_UNKNOWN_ERROR_IDX + sizeof "unknown error")
340 elf_errmsg (int error)
344 if (error == 0)
349 else if (error < -1 || error >= nmsgidx)
352 assert (msgidx[error == -1 ? last_error : error] < sizeof (msgstr));
353 return _(msgstr + msgidx[error == -1 ? last_error : error]);