Lines Matching refs:_module
28 #define Alert(_module, _format, ...) kprintf(#_module ": " _format, ##__VA_ARGS__)
30 #define Warning(_module, _format, ...) kprintf(#_module ": " _format, ##__VA_ARGS__)
32 #define Log(_module, _format, ...) \
33 if (SYSCTL_GETINT(log_##_module) >= 1) { \
34 kprintf(#_module ": " _format, ##__VA_ARGS__); \
37 #define DLOG(_module, _format, ...) \
38 if (SYSCTL_GETINT(log_##_module) >= 5) { \
39 kprintf(#_module ": " _format, ##__VA_ARGS__); \
42 #define VLOG(_module, _format, ...) \
43 if (SYSCTL_GETINT(log_##_module) >= 10) { \
44 kprintf(#_module ": " _format, ##__VA_ARGS__); \