Searched refs:__fmt (Results 1 – 3 of 3) sorted by relevance
/linux-4.19.296/include/linux/ |
D | debugfs.h | 43 #define DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \ argument 46 __simple_attr_check_format(__fmt, 0ull); \ 47 return simple_attr_open(inode, file, __get, __set, __fmt); \ 58 #define DEFINE_DEBUGFS_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument 59 DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false) 61 #define DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument 62 DEFINE_DEBUGFS_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
|
D | fs.h | 3356 #define DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, __is_signed) \ argument 3359 __simple_attr_check_format(__fmt, 0ull); \ 3360 return simple_attr_open(inode, file, __get, __set, __fmt); \ 3371 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \ argument 3372 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, false) 3374 #define DEFINE_SIMPLE_ATTRIBUTE_SIGNED(__fops, __get, __set, __fmt) \ argument 3375 DEFINE_SIMPLE_ATTRIBUTE_XSIGNED(__fops, __get, __set, __fmt, true)
|
/linux-4.19.296/include/media/ |
D | v4l2-common.h | 59 #define dev_dbg_lvl(__dev, __level, __debug, __fmt, __arg...) \ argument 62 dev_printk(KERN_DEBUG, __dev, __fmt, ##__arg); \
|