Lines Matching refs:ap
152 static void err_output(int is_error, const char *fmt, va_list ap)
155 static void err_output(int is_error, const char *fmt, va_list ap)
163 vsyslog(is_error ? LOG_ERR : LOG_INFO, fmt, ap);
192 vfprintf(log, fmt, ap);
202 va_list ap;
204 va_start(ap, fmt);
205 err_output(1, fmt, ap); /* 1 == is_error */
206 va_end(ap);
214 va_list ap;
216 va_start(ap, fmt);
217 err_output(0, fmt, ap); /* 0 == !is_error */
218 va_end(ap);