Lines Matching refs:vaf
143 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf)
153 len = snprintf(NULL, 0, "%pV", vaf);
166 iterator->remain, "%pV", vaf);
182 snprintf(buf, len + 1, "%pV", vaf);
198 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf)
200 seq_printf(p->arg, "%pV", vaf);
205 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf)
209 vprintf(vaf->fmt, *vaf->va); /* XXX */
211 dev_info(p->arg, "[" DRM_NAME "] %pV", vaf);
216 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf)
220 vprintf(vaf->fmt, *vaf->va); /* XXX */
222 pr_debug("%s %pV", p->prefix, vaf);
227 void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf)
231 vprintf(vaf->fmt, *vaf->va); /* XXX */
233 pr_err("*ERROR* %s %pV", p->prefix, vaf);
320 struct va_format vaf;
324 vaf.fmt = format;
325 vaf.va = &args;
329 __builtin_return_address(0), &vaf);
332 level, __builtin_return_address(0), &vaf);
361 struct va_format vaf;
368 vaf.fmt = format;
369 vaf.va = &args;
373 __builtin_return_address(0), &vaf);
376 __builtin_return_address(0), &vaf);
400 struct va_format vaf;
407 vaf.fmt = format;
408 vaf.va = &args;
411 __builtin_return_address(0), &vaf);
431 struct va_format vaf;
435 vaf.fmt = format;
436 vaf.va = &args;
439 __builtin_return_address(0), &vaf);