Lines Matching full:priority
91 * Log macro that allows you to specify a number for the priority.
94 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__) argument
101 #define LOG_PRI_VA(priority, tag, fmt, args) \ argument
102 android_vprintLog(priority, NULL, tag, fmt, args)
283 * verbose priority.
295 * debug priority.
303 * info priority.
311 * warn priority.
319 * error priority.
336 #define ALOG(priority, tag, ...) LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__) argument
340 * Conditional given a desired logging priority and tag.
343 #define IF_ALOG(priority, tag) if (android_testLog(ANDROID_##priority, tag)) argument