Lines Matching refs:msgid
36 const char *msgid, va_list *ap) in cpp_diagnostic() argument
64 ret = pfile->cb.error (pfile, level, reason, src_loc, 0, _(msgid), ap); in cpp_diagnostic()
72 cpp_error (cpp_reader * pfile, int level, const char *msgid, ...) in cpp_error() argument
77 va_start (ap, msgid); in cpp_error()
79 ret = cpp_diagnostic (pfile, level, CPP_W_NONE, msgid, &ap); in cpp_error()
88 cpp_warning (cpp_reader * pfile, int reason, const char *msgid, ...) in cpp_warning() argument
93 va_start (ap, msgid); in cpp_warning()
95 ret = cpp_diagnostic (pfile, CPP_DL_WARNING, reason, msgid, &ap); in cpp_warning()
104 cpp_pedwarning (cpp_reader * pfile, int reason, const char *msgid, ...) in cpp_pedwarning() argument
109 va_start (ap, msgid); in cpp_pedwarning()
111 ret = cpp_diagnostic (pfile, CPP_DL_PEDWARN, reason, msgid, &ap); in cpp_pedwarning()
121 cpp_warning_syshdr (cpp_reader * pfile, int reason, const char *msgid, ...) in cpp_warning_syshdr() argument
126 va_start (ap, msgid); in cpp_warning_syshdr()
128 ret = cpp_diagnostic (pfile, CPP_DL_WARNING_SYSHDR, reason, msgid, &ap); in cpp_warning_syshdr()
140 const char *msgid, va_list *ap) in cpp_diagnostic_with_line() argument
146 ret = pfile->cb.error (pfile, level, reason, src_loc, column, _(msgid), ap); in cpp_diagnostic_with_line()
156 const char *msgid, ...) in cpp_error_with_line() argument
161 va_start (ap, msgid); in cpp_error_with_line()
164 column, msgid, &ap); in cpp_error_with_line()
175 const char *msgid, ...) in cpp_warning_with_line() argument
180 va_start (ap, msgid); in cpp_warning_with_line()
183 column, msgid, &ap); in cpp_warning_with_line()
194 const char *msgid, ...) in cpp_pedwarning_with_line() argument
199 va_start (ap, msgid); in cpp_pedwarning_with_line()
202 column, msgid, &ap); in cpp_pedwarning_with_line()
214 const char *msgid, ...) in cpp_warning_with_line_syshdr() argument
219 va_start (ap, msgid); in cpp_warning_with_line_syshdr()
222 column, msgid, &ap); in cpp_warning_with_line_syshdr()
232 cpp_errno (cpp_reader *pfile, int level, const char *msgid) in cpp_errno() argument
234 if (msgid[0] == '\0') in cpp_errno()
235 msgid = _("stdout"); in cpp_errno()
237 return cpp_error (pfile, level, "%s: %s", msgid, xstrerror (errno)); in cpp_errno()