Lines Matching refs:cls
162 #define DEFINE_DYNAMIC_DEBUG_METADATA_CLS(name, cls, fmt) \ argument
171 .class_id = cls, \
174 BUILD_BUG_ON_MSG(cls > _DPRINTK_CLASS_DFLT, \
220 #define __dynamic_func_call_cls(id, cls, fmt, func, ...) do { \ argument
221 DEFINE_DYNAMIC_DEBUG_METADATA_CLS(id, cls, fmt); \
229 #define __dynamic_func_call_cls_no_desc(id, cls, fmt, func, ...) do { \ argument
230 DEFINE_DYNAMIC_DEBUG_METADATA_CLS(id, cls, fmt); \
246 #define _dynamic_func_call_cls(cls, fmt, func, ...) \ argument
247 __dynamic_func_call_cls(__UNIQUE_ID(ddebug), cls, fmt, func, ##__VA_ARGS__)
256 #define _dynamic_func_call_cls_no_desc(cls, fmt, func, ...) \ argument
257 __dynamic_func_call_cls_no_desc(__UNIQUE_ID(ddebug), cls, fmt, \
263 #define dynamic_pr_debug_cls(cls, fmt, ...) \ argument
264 _dynamic_func_call_cls(cls, fmt, __dynamic_pr_debug, \
295 #define __pr_debug_cls(cls, fmt, ...) do { \ argument
296 BUILD_BUG_ON_MSG(!__builtin_constant_p(cls), \
298 dynamic_pr_debug_cls(cls, fmt, ##__VA_ARGS__); \