Lines Matching refs:vaf
99 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf)
109 len = snprintf(NULL, 0, "%pV", vaf);
122 iterator->remain, "%pV", vaf);
138 snprintf(buf, len + 1, "%pV", vaf);
151 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf)
153 seq_printf(p->arg, "%pV", vaf);
157 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf)
159 dev_info(p->arg, "[" DRM_NAME "] %pV", vaf);
163 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf)
165 pr_debug("%s %pV", p->prefix, vaf);
169 void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf)
171 pr_err("*ERROR* %s %pV", p->prefix, vaf);
241 struct va_format vaf;
245 vaf.fmt = format;
246 vaf.va = &args;
250 __builtin_return_address(0), &vaf);
253 level, __builtin_return_address(0), &vaf);
262 struct va_format vaf;
269 vaf.fmt = format;
270 vaf.va = &args;
274 __builtin_return_address(0), &vaf);
277 __builtin_return_address(0), &vaf);
285 struct va_format vaf;
292 vaf.fmt = format;
293 vaf.va = &args;
296 __builtin_return_address(0), &vaf);
304 struct va_format vaf;
308 vaf.fmt = format;
309 vaf.va = &args;
312 __builtin_return_address(0), &vaf);