Lines Matching refs:vaf
121 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf)
131 len = snprintf(NULL, 0, "%pV", vaf);
144 iterator->remain, "%pV", vaf);
160 snprintf(buf, len + 1, "%pV", vaf);
173 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf)
175 seq_printf(p->arg, "%pV", vaf);
179 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf)
181 dev_info(p->arg, "[" DRM_NAME "] %pV", vaf);
185 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf)
188 printk(KERN_DEBUG "%s %pV", p->prefix, vaf);
192 void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf)
194 pr_err("*ERROR* %s %pV", p->prefix, vaf);
264 struct va_format vaf;
268 vaf.fmt = format;
269 vaf.va = &args;
273 __builtin_return_address(0), &vaf);
276 level, __builtin_return_address(0), &vaf);
285 struct va_format vaf;
293 vaf.fmt = format;
294 vaf.va = &args;
298 __builtin_return_address(0), &vaf);
301 __builtin_return_address(0), &vaf);
309 struct va_format vaf;
316 vaf.fmt = format;
317 vaf.va = &args;
320 __builtin_return_address(0), &vaf);
328 struct va_format vaf;
332 vaf.fmt = format;
333 vaf.va = &args;
336 __builtin_return_address(0), &vaf);