Lines Matching refs:format

63 fmd_vpanic(const char *format, va_list ap)  in fmd_vpanic()  argument
89 (void) tp->thr_trfunc(tp->thr_trdata, FMD_DBG_ERR, format, ap); in fmd_vpanic()
98 (void) vsnprintf(msg + len, sizeof (msg) - len, format, ap); in fmd_vpanic()
100 if (strchr(format, '\n') == NULL) { in fmd_vpanic()
115 fmd_panic(const char *format, ...) in fmd_panic() argument
119 va_start(ap, format); in fmd_panic()
120 fmd_vpanic(format, ap); in fmd_panic()
125 fmd_verror(int err, const char *format, va_list ap) in fmd_verror() argument
134 (void) tp->thr_trfunc(tp->thr_trdata, FMD_DBG_ERR, format, ap); in fmd_verror()
145 (void) vfprintf(stderr, format, ap); in fmd_verror()
147 if (strchr(format, '\n') == NULL) in fmd_verror()
161 (nvl = fmd_protocol_fmderror(err, format, ap)) != NULL) { in fmd_verror()
190 fmd_error(int err, const char *format, ...) in fmd_error() argument
194 va_start(ap, format); in fmd_error()
195 fmd_verror(err, format, ap); in fmd_error()
200 fmd_vdprintf(int mask, const char *format, va_list ap) in fmd_vdprintf() argument
211 (void) tp->thr_trfunc(tp->thr_trdata, mask, format, ap); in fmd_vdprintf()
216 len = vsnprintf(&c, 1, format, ap); in fmd_vdprintf()
218 (void) vsnprintf(msg, len + 1, format, ap); in fmd_vdprintf()
237 fmd_dprintf(int mask, const char *format, ...) in fmd_dprintf() argument
241 va_start(ap, format); in fmd_dprintf()
242 fmd_vdprintf(mask, format, ap); in fmd_dprintf()
271 fmd_trace(uint_t tag, const char *format, ...) in fmd_trace() argument
280 va_start(ap, format); in fmd_trace()
281 trp = tp->thr_trfunc(tp->thr_trdata, tag, format, ap); in fmd_trace()