/include/linux/ |
D | dev_printk.h | 19 #define dev_fmt(fmt) fmt argument 36 const char *fmt, va_list args); 38 int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...); 42 const char *fmt, ...); 44 void _dev_emerg(const struct device *dev, const char *fmt, ...); 46 void _dev_alert(const struct device *dev, const char *fmt, ...); 48 void _dev_crit(const struct device *dev, const char *fmt, ...); 50 void _dev_err(const struct device *dev, const char *fmt, ...); 52 void _dev_warn(const struct device *dev, const char *fmt, ...); 54 void _dev_notice(const struct device *dev, const char *fmt, ...); [all …]
|
D | printk.h | 82 const char *fmt; member 128 #define no_printk(fmt, ...) \ argument 131 printk(fmt, ##__VA_ARGS__); \ 137 void early_printk(const char *fmt, ...); 149 const char *fmt, va_list args); 152 int vprintk(const char *fmt, va_list args); 155 int _printk(const char *fmt, ...); 160 __printf(1, 2) __cold int _printk_deferred(const char *fmt, ...); 195 __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...); 258 static inline __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...) in dump_stack_set_arch_desc() argument [all …]
|
D | dynamic_debug.h | 62 void __dynamic_pr_debug(struct _ddebug *descriptor, const char *fmt, ...); 71 const char *fmt, ...); 78 const char *fmt, ...); 85 const char *fmt, ...); 87 #define DEFINE_DYNAMIC_DEBUG_METADATA(name, fmt) \ argument 93 .format = (fmt), \ 128 #define __dynamic_func_call(id, fmt, func, ...) do { \ argument 129 DEFINE_DYNAMIC_DEBUG_METADATA(id, fmt); \ 134 #define __dynamic_func_call_no_desc(id, fmt, func, ...) do { \ argument 135 DEFINE_DYNAMIC_DEBUG_METADATA(id, fmt); \ [all …]
|
D | fs_context.h | 196 void logfc(struct fc_log *log, const char *prefix, char level, const char *fmt, ...); 198 #define __logfc(fc, l, fmt, ...) logfc((fc)->log.log, NULL, \ argument 199 l, fmt, ## __VA_ARGS__) 200 #define __plog(p, l, fmt, ...) logfc((p)->log, (p)->prefix, \ argument 201 l, fmt, ## __VA_ARGS__) 210 #define infof(fc, fmt, ...) __logfc(fc, 'i', fmt, ## __VA_ARGS__) argument 211 #define info_plog(p, fmt, ...) __plog(p, 'i', fmt, ## __VA_ARGS__) argument 212 #define infofc(p, fmt, ...) __plog((&(fc)->log), 'i', fmt, ## __VA_ARGS__) argument 222 #define warnf(fc, fmt, ...) __logfc(fc, 'w', fmt, ## __VA_ARGS__) argument 223 #define warn_plog(p, fmt, ...) __plog(p, 'w', fmt, ## __VA_ARGS__) argument [all …]
|
D | kernel.h | 201 extern __printf(2, 3) int sprintf(char *buf, const char * fmt, ...); 204 int snprintf(char *buf, size_t size, const char *fmt, ...); 206 int vsnprintf(char *buf, size_t size, const char *fmt, va_list args); 208 int scnprintf(char *buf, size_t size, const char *fmt, ...); 210 int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); 212 char *kasprintf(gfp_t gfp, const char *fmt, ...); 214 char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); 216 const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args); 327 void ____trace_printk_check_format(const char *fmt, ...) in ____trace_printk_check_format() argument 330 #define __trace_printk_check_format(fmt, args...) \ argument [all …]
|
D | wakeup_reason.h | 26 void log_suspend_abort_reason(const char *fmt, ...); 27 void log_abnormal_wakeup_reason(const char *fmt, ...); 32 static inline void log_suspend_abort_reason(const char *fmt, ...) { } in log_suspend_abort_reason() argument 33 static inline void log_abnormal_wakeup_reason(const char *fmt, ...) { } in log_abnormal_wakeup_reason() argument
|
D | vbox_utils.h | 16 __printf(1, 2) void vbg_info(const char *fmt, ...); 17 __printf(1, 2) void vbg_warn(const char *fmt, ...); 18 __printf(1, 2) void vbg_err(const char *fmt, ...); 19 __printf(1, 2) void vbg_err_ratelimited(const char *fmt, ...); 23 __printf(1, 2) void vbg_debug(const char *fmt, ...);
|
D | net.h | 256 #define net_emerg_ratelimited(fmt, ...) \ argument 257 net_ratelimited_function(pr_emerg, fmt, ##__VA_ARGS__) 258 #define net_alert_ratelimited(fmt, ...) \ argument 259 net_ratelimited_function(pr_alert, fmt, ##__VA_ARGS__) 260 #define net_crit_ratelimited(fmt, ...) \ argument 261 net_ratelimited_function(pr_crit, fmt, ##__VA_ARGS__) 262 #define net_err_ratelimited(fmt, ...) \ argument 263 net_ratelimited_function(pr_err, fmt, ##__VA_ARGS__) 264 #define net_notice_ratelimited(fmt, ...) \ argument 265 net_ratelimited_function(pr_notice, fmt, ##__VA_ARGS__) [all …]
|
D | blktrace_api.h | 35 void __trace_note_message(struct blk_trace *, struct blkcg *blkcg, const char *fmt, ...); 50 #define blk_add_cgroup_trace_msg(q, cg, fmt, ...) \ argument 57 __trace_note_message(bt, cg, fmt, ##__VA_ARGS__);\ 60 #define blk_add_trace_msg(q, fmt, ...) \ argument 61 blk_add_cgroup_trace_msg(q, NULL, fmt, ##__VA_ARGS__) 94 # define blk_add_trace_msg(q, fmt, ...) do { } while (0) argument 95 # define blk_add_cgroup_trace_msg(q, cg, fmt, ...) do { } while (0) argument
|
D | device-mapper.h | 595 #define DM_FMT(fmt) DM_NAME ": " DM_MSG_PREFIX ": " fmt "\n" argument 597 #define DMCRIT(fmt, ...) pr_crit(DM_FMT(fmt), ##__VA_ARGS__) argument 599 #define DMERR(fmt, ...) pr_err(DM_FMT(fmt), ##__VA_ARGS__) argument 600 #define DMERR_LIMIT(fmt, ...) pr_err_ratelimited(DM_FMT(fmt), ##__VA_ARGS__) argument 601 #define DMWARN(fmt, ...) pr_warn(DM_FMT(fmt), ##__VA_ARGS__) argument 602 #define DMWARN_LIMIT(fmt, ...) pr_warn_ratelimited(DM_FMT(fmt), ##__VA_ARGS__) argument 603 #define DMINFO(fmt, ...) pr_info(DM_FMT(fmt), ##__VA_ARGS__) argument 604 #define DMINFO_LIMIT(fmt, ...) pr_info_ratelimited(DM_FMT(fmt), ##__VA_ARGS__) argument 606 #define DMDEBUG(fmt, ...) pr_debug(DM_FMT(fmt), ##__VA_ARGS__) argument 607 #define DMDEBUG_LIMIT(fmt, ...) pr_debug_ratelimited(DM_FMT(fmt), ##__VA_ARGS__) argument
|
D | trace_seq.h | 77 void trace_seq_printf(struct trace_seq *s, const char *fmt, ...); 79 void trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args); 81 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); 100 static inline void trace_seq_printf(struct trace_seq *s, const char *fmt, ...) in trace_seq_printf() argument 104 trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary) in trace_seq_bprintf() argument
|
D | binfmts.h | 108 extern void __register_binfmt(struct linux_binfmt *fmt, int insert); 111 static inline void register_binfmt(struct linux_binfmt *fmt) in register_binfmt() argument 113 __register_binfmt(fmt, 0); in register_binfmt() 116 static inline void insert_binfmt(struct linux_binfmt *fmt) in insert_binfmt() argument 118 __register_binfmt(fmt, 1); in insert_binfmt()
|
D | bug.h | 81 #define CHECK_DATA_CORRUPTION(condition, fmt, ...) \ argument 86 pr_err(fmt, ##__VA_ARGS__); \ 89 WARN(1, fmt, ##__VA_ARGS__); \
|
D | mmiotrace.h | 53 extern __printf(1, 2) int mmiotrace_printk(const char *fmt, ...); 74 static inline __printf(1, 2) int mmiotrace_printk(const char *fmt, ...) in mmiotrace_printk() argument 110 extern __printf(1, 0) int mmio_trace_printk(const char *fmt, va_list args);
|
/include/drm/ |
D | drm_print.h | 106 drm_vprintf(struct drm_printer *p, const char *fmt, va_list *va) in drm_vprintf() argument 108 struct va_format vaf = { .fmt = fmt, .va = va }; in drm_vprintf() 119 #define drm_printf_indent(printer, indent, fmt, ...) \ argument 120 drm_printf((printer), "%.*s" fmt, (indent), "\t\t\t\t\tX", ##__VA_ARGS__) 346 #define DRM_DEV_ERROR(dev, fmt, ...) \ argument 347 drm_dev_printk(dev, KERN_ERR, "*ERROR* " fmt, ##__VA_ARGS__) 357 #define DRM_DEV_ERROR_RATELIMITED(dev, fmt, ...) \ argument 364 DRM_DEV_ERROR(dev, fmt, ##__VA_ARGS__); \ 367 #define DRM_DEV_INFO(dev, fmt, ...) \ argument 368 drm_dev_printk(dev, KERN_INFO, fmt, ##__VA_ARGS__) [all …]
|
/include/linux/sunrpc/ |
D | debug.h | 24 #define dprintk(fmt, ...) \ argument 25 dfprintk(FACILITY, fmt, ##__VA_ARGS__) 26 #define dprintk_cont(fmt, ...) \ argument 27 dfprintk_cont(FACILITY, fmt, ##__VA_ARGS__) 28 #define dprintk_rcu(fmt, ...) \ argument 29 dfprintk_rcu(FACILITY, fmt, ##__VA_ARGS__) 30 #define dprintk_rcu_cont(fmt, ...) \ argument 31 dfprintk_rcu_cont(FACILITY, fmt, ##__VA_ARGS__) 37 # define dfprintk(fac, fmt, ...) \ argument 40 printk(KERN_DEFAULT fmt, ##__VA_ARGS__); \ [all …]
|
/include/linux/ceph/ |
D | ceph_debug.h | 5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt argument 18 # define dout(fmt, ...) \ argument 19 pr_debug("%.*s %12.12s:%-4d : " fmt, \ 24 # define dout(fmt, ...) do { \ argument 26 printk(KERN_DEBUG fmt, ##__VA_ARGS__); \ 35 # define dout(fmt, ...) pr_debug(" " fmt, ##__VA_ARGS__) argument
|
/include/kunit/ |
D | test.h | 667 void __printf(2, 3) kunit_log_append(char *log, const char *fmt, ...); 680 #define kunit_mark_skipped(test_or_suite, fmt, ...) \ argument 685 fmt, ##__VA_ARGS__); \ 699 #define kunit_skip(test_or_suite, fmt, ...) \ argument 701 kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\ 709 #define kunit_log(lvl, test_or_suite, fmt, ...) \ argument 711 printk(lvl fmt, ##__VA_ARGS__); \ 712 kunit_log_append((test_or_suite)->log, fmt "\n", \ 716 #define kunit_printk(lvl, test, fmt, ...) \ argument 717 kunit_log(lvl, test, KUNIT_SUBTEST_INDENT "# %s: " fmt, \ [all …]
|
D | test-bug.h | 12 #define kunit_fail_current_test(fmt, ...) \ argument 13 __kunit_fail_current_test(__FILE__, __LINE__, fmt, ##__VA_ARGS__) 18 const char *fmt, ...); 23 const char *fmt, ...) in __kunit_fail_current_test() argument
|
/include/net/bluetooth/ |
D | bluetooth.h | 157 void bt_info(const char *fmt, ...); 159 void bt_warn(const char *fmt, ...); 161 void bt_err(const char *fmt, ...); 166 void bt_dbg(const char *fmt, ...); 169 void bt_warn_ratelimited(const char *fmt, ...); 171 void bt_err_ratelimited(const char *fmt, ...); 173 #define BT_INFO(fmt, ...) bt_info(fmt "\n", ##__VA_ARGS__) argument 174 #define BT_WARN(fmt, ...) bt_warn(fmt "\n", ##__VA_ARGS__) argument 175 #define BT_ERR(fmt, ...) bt_err(fmt "\n", ##__VA_ARGS__) argument 178 #define BT_DBG(fmt, ...) bt_dbg(fmt "\n", ##__VA_ARGS__) argument [all …]
|
/include/media/ |
D | v4l2-common.h | 23 #define v4l_printk(level, name, adapter, addr, fmt, arg...) \ argument 24 printk(level "%s %d-%04x: " fmt, name, i2c_adapter_id(adapter), addr , ## arg) 26 #define v4l_client_printk(level, client, fmt, arg...) \ argument 28 (client)->addr, fmt , ## arg) 30 #define v4l_err(client, fmt, arg...) \ argument 31 v4l_client_printk(KERN_ERR, client, fmt , ## arg) 33 #define v4l_warn(client, fmt, arg...) \ argument 34 v4l_client_printk(KERN_WARNING, client, fmt , ## arg) 36 #define v4l_info(client, fmt, arg...) \ argument 37 v4l_client_printk(KERN_INFO, client, fmt , ## arg) [all …]
|
/include/media/drv-intf/ |
D | saa7146.h | 31 #define ERR(fmt, ...) pr_err("%s: " fmt, __func__, ##__VA_ARGS__) argument 33 #define _DBG(mask, fmt, ...) \ argument 36 pr_debug("%s(): " fmt, __func__, ##__VA_ARGS__); \ 40 #define DEB_S(fmt, ...) _DBG(0x01, fmt, ##__VA_ARGS__) argument 42 #define DEB_D(fmt, ...) _DBG(0x02, fmt, ##__VA_ARGS__) argument 44 #define DEB_EE(fmt, ...) _DBG(0x04, fmt, ##__VA_ARGS__) argument 46 #define DEB_I2C(fmt, ...) _DBG(0x08, fmt, ##__VA_ARGS__) argument 48 #define DEB_VBI(fmt, ...) _DBG(0x10, fmt, ##__VA_ARGS__) argument 50 #define DEB_INT(fmt, ...) _DBG(0x20, fmt, ##__VA_ARGS__) argument 52 #define DEB_CAP(fmt, ...) _DBG(0x40, fmt, ##__VA_ARGS__) argument
|
/include/linux/soc/samsung/ |
D | s3c-pm.h | 48 #define S3C_PMDBG(fmt...) s3c_pm_dbg(fmt) argument 64 #define S3C_PMDBG(fmt...) pr_debug(fmt) argument
|
/include/xen/ |
D | hvc-console.h | 11 void xen_raw_printk(const char *fmt, ...); 16 void xen_raw_printk(const char *fmt, ...) { } in xen_raw_printk() argument
|
/include/sound/ |
D | hdmi-codec.h | 32 } fmt; member 71 struct hdmi_codec_daifmt *fmt, 81 struct hdmi_codec_daifmt *fmt,
|