Home
last modified time | relevance | path

Searched defs:format (Results 1 – 25 of 131) sorted by relevance

123456

/linux-4.19.296/include/asm-generic/
Dbug.h132 #define WARN(condition, format...) ({ \ argument
140 #define WARN_TAINT(condition, taint, format...) ({ \ argument
160 #define WARN_ONCE(condition, format...) ({ \ argument
171 #define WARN_TAINT_ONCE(condition, taint, format...) ({ \ argument
199 #define WARN(condition, format...) ({ \ argument
207 #define WARN_ONCE(condition, format...) WARN(condition, format) argument
208 #define WARN_TAINT(condition, taint, format...) WARN(condition, format) argument
209 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format) argument
/linux-4.19.296/drivers/pci/hotplug/
Dpciehp.h35 #define dbg(format, arg...) \ argument
40 #define err(format, arg...) \ argument
42 #define info(format, arg...) \ argument
44 #define warn(format, arg...) \ argument
47 #define ctrl_dbg(ctrl, format, arg...) \ argument
53 #define ctrl_err(ctrl, format, arg...) \ argument
55 #define ctrl_info(ctrl, format, arg...) \ argument
57 #define ctrl_warn(ctrl, format, arg...) \ argument
Dcpcihp_generic.c35 #define dbg(format, arg...) \ argument
41 #define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME, ## arg) argument
42 #define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME, ## arg) argument
43 #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME, ## arg) argument
Drpaphp.h36 #define dbg(format, arg...) \ argument
42 #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg) argument
43 #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg) argument
44 #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg) argument
Dcpci_hotplug_pci.c24 #define dbg(format, arg...) \ argument
30 #define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME, ## arg) argument
31 #define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME, ## arg) argument
32 #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME, ## arg) argument
Dcpcihp_zt5550.c30 #define dbg(format, arg...) \ argument
36 #define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME, ## arg) argument
37 #define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME, ## arg) argument
38 #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME, ## arg) argument
Dacpi_pcihp.c25 #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg) argument
26 #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg) argument
27 #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg) argument
Dshpchp.h36 #define dbg(format, arg...) \ argument
41 #define err(format, arg...) \ argument
43 #define info(format, arg...) \ argument
45 #define warn(format, arg...) \ argument
48 #define ctrl_dbg(ctrl, format, arg...) \ argument
54 #define ctrl_err(ctrl, format, arg...) \ argument
56 #define ctrl_info(ctrl, format, arg...) \ argument
58 #define ctrl_warn(ctrl, format, arg...) \ argument
Dcpci_hotplug_core.c32 #define dbg(format, arg...) \ argument
38 #define err(format, arg...) printk(KERN_ERR "%s: " format "\n", MY_NAME, ## arg) argument
39 #define info(format, arg...) printk(KERN_INFO "%s: " format "\n", MY_NAME, ## arg) argument
40 #define warn(format, arg...) printk(KERN_WARNING "%s: " format "\n", MY_NAME, ## arg) argument
Dpci_hotplug_core.c38 #define err(format, arg...) printk(KERN_ERR "%s: " format, MY_NAME, ## arg) argument
39 #define info(format, arg...) printk(KERN_INFO "%s: " format, MY_NAME, ## arg) argument
40 #define warn(format, arg...) printk(KERN_WARNING "%s: " format, MY_NAME, ## arg) argument
/linux-4.19.296/include/linux/
Dmmdebug.h54 #define VM_WARN_ONCE(cond, format...) (void)WARN_ONCE(cond, format) argument
55 #define VM_WARN(cond, format...) (void)WARN(cond, format) argument
64 #define VM_WARN_ONCE(cond, format...) BUILD_BUG_ON_INVALID(cond) argument
65 #define VM_WARN(cond, format...) BUILD_BUG_ON_INVALID(cond) argument
Dipmi-fru.h26 uint8_t format; /* 0x01 */ member
48 uint8_t format; /* 0x01 */ member
Dratelimit.h91 #define WARN_RATELIMIT(condition, format, ...) \ argument
109 #define WARN_RATELIMIT(condition, format, ...) \ argument
/linux-4.19.296/drivers/misc/mei/
Dclient.h227 #define cl_dbg(dev, cl, format, arg...) \ argument
230 #define cl_warn(dev, cl, format, arg...) \ argument
233 #define cl_err(dev, cl, format, arg...) \ argument
/linux-4.19.296/drivers/isdn/capi/
Dkcapi.h19 #define DBG(format, arg...) do { \ argument
23 #define DBG(format, arg...) /* */ argument
/linux-4.19.296/drivers/memstick/host/
Dr592.h160 #define message(format, ...) \ argument
163 #define __dbg(level, format, ...) \ argument
171 #define dbg(format, ...) __dbg(1, format, ## __VA_ARGS__) argument
172 #define dbg_verbose(format, ...) __dbg(2, format, ## __VA_ARGS__) argument
173 #define dbg_reg(format, ...) __dbg(3, format, ## __VA_ARGS__) argument
/linux-4.19.296/crypto/
Ddeflate.c46 static int deflate_comp_init(struct deflate_ctx *ctx, int format) in deflate_comp_init()
75 static int deflate_decomp_init(struct deflate_ctx *ctx, int format) in deflate_decomp_init()
112 static int __deflate_init(void *ctx, int format) in __deflate_init()
126 static void *gen_deflate_alloc_ctx(struct crypto_scomp *tfm, int format) in gen_deflate_alloc_ctx()
/linux-4.19.296/drivers/isdn/hisax/
Dhisax_debug.h28 #define DBG(level, format, arg...) do { \ argument
74 #define DBG(level, format, arg...) do {} while (0) argument
/linux-4.19.296/drivers/media/common/b2c2/
Dflexcop-common.h30 #define err(format, arg...) \ argument
33 #define info(format, arg...) \ argument
36 #define warn(format, arg...) \ argument
/linux-4.19.296/drivers/media/v4l2-core/
Dv4l2-subdev.c129 struct v4l2_subdev_format *format) in check_format()
294 struct v4l2_subdev_format *format = arg; in subdev_do_ioctl() local
306 struct v4l2_subdev_format *format = arg; in subdev_do_ioctl() local
/linux-4.19.296/drivers/thunderbolt/
Dctl.c40 #define tb_ctl_WARN(ctl, format, arg...) \ argument
43 #define tb_ctl_err(ctl, format, arg...) \ argument
46 #define tb_ctl_warn(ctl, format, arg...) \ argument
49 #define tb_ctl_info(ctl, format, arg...) \ argument
52 #define tb_ctl_dbg(ctl, format, arg...) \ argument
/linux-4.19.296/drivers/media/rc/
Dene_ir.h180 #define __dbg(level, format, ...) \ argument
186 #define dbg(format, ...) __dbg(1, format, ## __VA_ARGS__) argument
187 #define dbg_verbose(format, ...) __dbg(2, format, ## __VA_ARGS__) argument
188 #define dbg_regs(format, ...) __dbg(3, format, ## __VA_ARGS__) argument
/linux-4.19.296/include/linux/raid/
Dpq.h166 # define pr_err(format, ...) fprintf(stderr, format, ## __VA_ARGS__) argument
167 # define pr_info(format, ...) fprintf(stdout, format, ## __VA_ARGS__) argument
/linux-4.19.296/include/drm/
Ddrm_fourcc.h45 u32 format; member
/linux-4.19.296/include/sound/
Dcore.h298 #define __snd_printk(level, file, line, format, ...) \ argument
350 static inline void snd_printd(const char *format, ...) {} in snd_printd()
352 static inline void _snd_printd(int level, const char *format, ...) {} in _snd_printd()
373 #define snd_printdd(format, ...) \ argument
377 static inline void snd_printdd(const char *format, ...) {} in snd_printdd()

123456