Lines Matching refs:fmt
158 const char *fmt, va_list args) { in xc_reportv() argument
169 fmt_l = strlen(fmt); in xc_reportv()
170 if (fmt_l && fmt[fmt_l-1]=='\n' && fmt_l < sizeof(fmt_nonewline)) { in xc_reportv()
171 memcpy(fmt_nonewline, fmt, fmt_l-1); in xc_reportv()
173 fmt = fmt_nonewline; in xc_reportv()
182 vsnprintf(msg, XC_MAX_ERROR_MSG_LEN-1, fmt, args); in xc_reportv()
193 xentoollog_level level, int code, const char *fmt, ...) { in xc_report() argument
195 va_start(args,fmt); in xc_report()
196 xc_reportv(xch,lg,level,code,fmt,args); in xc_report()
200 void xc_report_error(xc_interface *xch, int code, const char *fmt, ...) in xc_report_error() argument
203 va_start(args, fmt); in xc_report_error()
204 xc_reportv(xch, xch->error_handler, XTL_ERROR, code, fmt, args); in xc_report_error()