Searched refs:pr_fmt (Results 1 – 2 of 2) sorted by relevance
/system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/include/linux/kernel/ |
D | kernel.h | 60 #ifndef pr_fmt 61 #define pr_fmt(fmt) fmt macro 64 #define pr_err(fmt,...) eprintf(0, pr_fmt(fmt), ##__VA_ARGS__) 65 #define pr_warning(fmt,...) eprintf(0, pr_fmt(fmt), ##__VA_ARGS__) 66 #define pr_info(fmt,...) eprintf(0, pr_fmt(fmt), ##__VA_ARGS__) 68 #define pr_debug(fmt,...) eprintf(1, pr_fmt(fmt), ##__VA_ARGS__) 69 #define pr_debugN(n,fmt,...) eprintf(n, pr_fmt(fmt), ##__VA_ARGS__) 70 #define pr_debug2(fmt,...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__) 71 #define pr_debug3(fmt,...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__) 73 #define pr_debug4(fmt,...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__)
|
/system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/include/linux/kernel/ |
D | kernel.h | 106 #ifndef pr_fmt 107 #define pr_fmt(fmt) fmt macro 111 eprintf(0, pr_fmt(fmt), ##__VA_ARGS__) 113 eprintf(0, pr_fmt(fmt), ##__VA_ARGS__) 115 eprintf(0, pr_fmt(fmt), ##__VA_ARGS__) 117 eprintf(1, pr_fmt(fmt), ##__VA_ARGS__) 119 eprintf(n, pr_fmt(fmt), ##__VA_ARGS__) 120 #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__) 121 #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__) 122 #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__)
|