Lines Matching refs:drm_printer

174 struct drm_printer {  struct
176 void (*printfn)(struct drm_printer *p, struct va_format *vaf); argument
177 void (*puts)(struct drm_printer *p, const char *str); argument
188 void __drm_printfn_coredump(struct drm_printer *p, struct va_format *vaf); argument
189 void __drm_puts_coredump(struct drm_printer *p, const char *str);
190 void __drm_printfn_seq_file(struct drm_printer *p, struct va_format *vaf);
191 void __drm_puts_seq_file(struct drm_printer *p, const char *str);
192 void __drm_printfn_info(struct drm_printer *p, struct va_format *vaf);
193 void __drm_printfn_dbg(struct drm_printer *p, struct va_format *vaf);
194 void __drm_printfn_err(struct drm_printer *p, struct va_format *vaf);
195 void __drm_printfn_line(struct drm_printer *p, struct va_format *vaf);
198 void drm_printf(struct drm_printer *p, const char *f, ...);
199 void drm_puts(struct drm_printer *p, const char *str);
200 void drm_print_regset32(struct drm_printer *p, struct debugfs_regset32 *regset);
201 void drm_print_bits(struct drm_printer *p, unsigned long value,
203 void drm_print_hex_dump(struct drm_printer *p, const char *prefix,
214 drm_vprintf(struct drm_printer *p, const char *fmt, va_list *va) in drm_vprintf()
332 static inline struct drm_printer
335 struct drm_printer p = { in drm_coredump_printer()
354 static inline struct drm_printer drm_seq_file_printer(struct seq_file *f) in drm_seq_file_printer()
356 struct drm_printer p = { in drm_seq_file_printer()
371 static inline struct drm_printer drm_info_printer(struct device *dev) in drm_info_printer()
373 struct drm_printer p = { in drm_info_printer()
389 static inline struct drm_printer drm_dbg_printer(struct drm_device *drm, in drm_dbg_printer()
393 struct drm_printer p = { in drm_dbg_printer()
411 static inline struct drm_printer drm_err_printer(struct drm_device *drm, in drm_err_printer()
414 struct drm_printer p = { in drm_err_printer()
468 static inline struct drm_printer drm_line_printer(struct drm_printer *p, in drm_line_printer()
472 struct drm_printer lp = { in drm_line_printer()