Home | History | Annotate | Download | only in log

Lines Matching refs:prio

617 #define android_printLog(prio, tag, fmt...) \
618 __android_log_print(prio, tag, fmt)
620 #define android_vprintLog(prio, cond, tag, fmt...) \
621 __android_log_vprint(prio, tag, fmt)
642 #define android_writeLog(prio, tag, text) \
643 __android_log_write(prio, tag, text)
665 #define android_testLog(prio, tag) \
666 (__android_log_is_loggable(prio, tag, ANDROID_LOG_DEBUG) != 0)
668 #define android_testLog(prio, tag) \
669 (__android_log_is_loggable(prio, tag, ANDROID_LOG_VERBOSE) != 0)
674 * result of non-zero to expose a log. prio is ANDROID_LOG_VERBOSE to
678 int __android_log_is_loggable(int prio, const char *tag, int default_prio);
688 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
689 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...)