Lines Matching refs:ap

34     va_list ap;  in error_printf()  local
37 va_start(ap, fmt); in error_printf()
38 ret = error_vprintf(fmt, ap); in error_printf()
39 va_end(ap); in error_printf()
187 static void vreport(report_type type, const char *fmt, va_list ap) in vreport() argument
215 error_vprintf(fmt, ap); in vreport()
226 void error_vreport(const char *fmt, va_list ap) in error_vreport() argument
228 vreport(REPORT_TYPE_ERROR, fmt, ap); in error_vreport()
237 void warn_vreport(const char *fmt, va_list ap) in warn_vreport() argument
239 vreport(REPORT_TYPE_WARNING, fmt, ap); in warn_vreport()
249 void info_vreport(const char *fmt, va_list ap) in info_vreport() argument
251 vreport(REPORT_TYPE_INFO, fmt, ap); in info_vreport()
263 va_list ap; in error_report() local
265 va_start(ap, fmt); in error_report()
266 vreport(REPORT_TYPE_ERROR, fmt, ap); in error_report()
267 va_end(ap); in error_report()
278 va_list ap; in warn_report() local
280 va_start(ap, fmt); in warn_report()
281 vreport(REPORT_TYPE_WARNING, fmt, ap); in warn_report()
282 va_end(ap); in warn_report()
294 va_list ap; in info_report() local
296 va_start(ap, fmt); in info_report()
297 vreport(REPORT_TYPE_INFO, fmt, ap); in info_report()
298 va_end(ap); in info_report()
308 va_list ap; in error_report_once_cond() local
315 va_start(ap, fmt); in error_report_once_cond()
316 vreport(REPORT_TYPE_ERROR, fmt, ap); in error_report_once_cond()
317 va_end(ap); in error_report_once_cond()
328 va_list ap; in warn_report_once_cond() local
335 va_start(ap, fmt); in warn_report_once_cond()
336 vreport(REPORT_TYPE_WARNING, fmt, ap); in warn_report_once_cond()
337 va_end(ap); in warn_report_once_cond()