Lines Matching refs:level
119 static __inline void ms_dprintf(int level, const char *fmt, ...) {} in ms_dprintf() argument
127 static __inline void ms_dprintf(int level, const char *fmt, ...) in ms_dprintf() argument
132 if (!(level & DEBUG_LEVEL)) in ms_dprintf()
160 #define ms_dprintf(level, fmt, arg...) \ argument
162 if (level & DEBUG_LEVEL) diag_printf(fmt, ##arg); \
165 #define ms_dprintk(level, fmt, arg...) \ argument
167 if (level & DEBUG_LEVEL) printk(fmt, ##arg); \
172 #define ms_dprintf(level, fmt, arg...) \ argument
174 if (level & DEBUG_LEVEL) printf(fmt, ##arg); \
178 #define ms_dprintk(level, fmt, arg...) \ argument
180 if (level & DEBUG_LEVEL) printk(fmt, ##arg); \