Lines Matching refs:tag

58 #define android_writeLog(prio, tag, text) __android_log_write(prio, tag, text)
60 #define android_printLog(prio, tag, ...) \
61 __android_log_print(prio, tag, __VA_ARGS__)
63 #define android_vprintLog(prio, cond, tag, ...) \
64 __android_log_vprint(prio, tag, __VA_ARGS__)
70 #define LOG_PRI(priority, tag, ...) android_printLog(priority, tag, __VA_ARGS__)
77 #define LOG_PRI_VA(priority, tag, fmt, args) \
78 android_vprintLog(priority, NULL, tag, fmt, args)
98 #define android_printAssert(cond, tag, ...) \
99 __android_log_assert(cond, tag, \
303 * The second argument may be NULL or "" to indicate the "global" tag.
306 #define ALOG(priority, tag, ...) LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
310 * Conditional given a desired logging priority and tag.
313 #define IF_ALOG(priority, tag) if (android_testLog(ANDROID_##priority, tag))
342 * Use the per-tag properties "log.tag.<tagname>" to generate a runtime
347 int __android_log_is_loggable(int prio, const char* tag, int default_prio);
352 int __android_log_is_loggable_len(int prio, const char* tag, size_t len,
356 #define android_testLog(prio, tag) \
357 (__android_log_is_loggable_len(prio, tag, (tag && *tag) ? strlen(tag) : 0, \
360 #define android_testLog(prio, tag) \
361 (__android_log_is_loggable_len(prio, tag, (tag && *tag) ? strlen(tag) : 0, \
368 #define android_testLog(prio, tag) \
369 (__android_log_is_loggable(prio, tag, ANDROID_LOG_DEBUG) != 0)
371 #define android_testLog(prio, tag) \
372 (__android_log_is_loggable(prio, tag, ANDROID_LOG_VERBOSE) != 0)
379 #define android_testLog(prio, tag) (1)