Lines Matching refs:fmt
20 #define pr_fmt(fmt) fmt argument
23 #define pr_err(fmt, ...) \ argument
24 eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
25 #define pr_warning(fmt, ...) \ argument
26 eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
27 #define pr_info(fmt, ...) \ argument
28 eprintf(0, verbose, pr_fmt(fmt), ##__VA_ARGS__)
29 #define pr_debug(fmt, ...) \ argument
30 eprintf(1, verbose, pr_fmt(fmt), ##__VA_ARGS__)
31 #define pr_debugN(n, fmt, ...) \ argument
32 eprintf(n, verbose, pr_fmt(fmt), ##__VA_ARGS__)
33 #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__) argument
34 #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__) argument
35 #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__) argument
37 #define pr_time_N(n, var, t, fmt, ...) \ argument
38 eprintf_time(n, var, t, fmt, ##__VA_ARGS__)
40 #define pr_oe_time(t, fmt, ...) pr_time_N(1, debug_ordered_events, t, pr_fmt(fmt), ##__VA_ARGS__) argument
41 #define pr_oe_time2(t, fmt, ...) pr_time_N(2, debug_ordered_events, t, pr_fmt(fmt), ##__VA_ARGS__) argument
45 int dump_printf(const char *fmt, ...) __printf(1, 2);
51 void pr_stat(const char *fmt, ...);
53 int eprintf(int level, int var, const char *fmt, ...) __printf(3, 4);
54 int eprintf_time(int level, int var, u64 t, const char *fmt, ...) __printf(4, 5);
55 int veprintf(int level, int var, const char *fmt, va_list args);