Home | History | Annotate | Download | only in include

Lines Matching refs:fmt

30 #define LOGWRAPPER(tag, fmt, args...) \
31 fprintf(stderr, "%s: " fmt "\n", tag, ##args)
46 * These log statements are effectively executing only ALOG(_________, tag, fmt,
53 #define LOG_VERBOSE(tag, fmt, args...) \
55 (true) ? ((int)0) : fprintf(stderr, "%s" fmt, tag, ##args); \
58 #define LOG_VERBOSE(tag, fmt, args...) \
60 (true) ? ALOG(LOG_VERBOSE, tag, fmt, ##args) \
61 : fprintf(stderr, "%s" fmt, tag, ##args); \
65 #define LOG_DEBUG(tag, fmt, args...) \
67 (true) ? ALOG(LOG_DEBUG, tag, fmt, ##args) \
68 : fprintf(stderr, "%s" fmt, tag, ##args); \
70 #define LOG_INFO(tag, fmt, args...) \
72 (true) ? ALOG(LOG_INFO, tag, fmt, ##args) \
73 : fprintf(stderr, "%s" fmt, tag, ##args); \
75 #define LOG_WARN(tag, fmt, args...) \
77 (true) ? ALOG(LOG_WARN, tag, fmt, ##args) \
78 : fprintf(stderr, "%s" fmt, tag, ##args); \
80 #define LOG_ERROR(tag, fmt, args...) \
82 (true) ? ALOG(LOG_ERROR, tag, fmt, ##args) \
83 : fprintf(stderr, "%s" fmt, tag, ##args); \