Home | History | Annotate | Download | only in cutils

Lines Matching refs:priority

157  * verbose priority.
169 * debug priority.
177 * info priority.
185 * warn priority.
193 * error priority.
429 #define ALOG(priority, tag, ...) \
430 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
434 * Log macro that allows you to specify a number for the priority.
437 #define LOG_PRI(priority, tag, ...) \
438 android_printLog(priority, tag, __VA_ARGS__)
445 #define LOG_PRI_VA(priority, tag, fmt, args) \
446 android_vprintLog(priority, NULL, tag, fmt, args)
450 * Conditional given a desired logging priority and tag.
453 #define IF_ALOG(priority, tag) \
454 if (android_testLog(ANDROID_##priority, tag))