Lines Matching refs:vaf
75 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_coredump() argument
85 len = snprintf(NULL, 0, "%pV", vaf); in __drm_printfn_coredump()
98 iterator->remain, "%pV", vaf); in __drm_printfn_coredump()
114 snprintf(buf, len + 1, "%pV", vaf); in __drm_printfn_coredump()
127 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_seq_file() argument
129 seq_printf(p->arg, "%pV", vaf); in __drm_printfn_seq_file()
133 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_info() argument
135 dev_info(p->arg, "[" DRM_NAME "] %pV", vaf); in __drm_printfn_info()
139 void __drm_printfn_debug(struct drm_printer *p, struct va_format *vaf) in __drm_printfn_debug() argument
141 pr_debug("%s %pV", p->prefix, vaf); in __drm_printfn_debug()
180 struct va_format vaf; in drm_dev_printk() local
184 vaf.fmt = format; in drm_dev_printk()
185 vaf.va = &args; in drm_dev_printk()
189 __builtin_return_address(0), &vaf); in drm_dev_printk()
192 level, __builtin_return_address(0), &vaf); in drm_dev_printk()
201 struct va_format vaf; in drm_dev_dbg() local
208 vaf.fmt = format; in drm_dev_dbg()
209 vaf.va = &args; in drm_dev_dbg()
213 __builtin_return_address(0), &vaf); in drm_dev_dbg()
216 __builtin_return_address(0), &vaf); in drm_dev_dbg()
224 struct va_format vaf; in drm_dbg() local
231 vaf.fmt = format; in drm_dbg()
232 vaf.va = &args; in drm_dbg()
235 __builtin_return_address(0), &vaf); in drm_dbg()
243 struct va_format vaf; in drm_err() local
247 vaf.fmt = format; in drm_err()
248 vaf.va = &args; in drm_err()
251 __builtin_return_address(0), &vaf); in drm_err()