Lines Matching refs:tag

63  * This is the local tag used for the following simplified
65 * before using the other macros to change the tag.
345 * The second argument may be NULL or "" to indicate the "global" tag.
348 #define ALOG(priority, tag, ...) \
349 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
356 #define LOG_PRI(priority, tag, ...) \
357 android_printLog(priority, tag, __VA_ARGS__)
364 #define LOG_PRI_VA(priority, tag, fmt, args) \
365 android_vprintLog(priority, NULL, tag, fmt, args)
369 * Conditional given a desired logging priority and tag.
372 #define IF_ALOG(priority, tag) \
373 if (android_testLog(ANDROID_##priority, tag))
420 #define android_printLog(prio, tag, fmt...) \
421 __android_log_print(prio, tag, fmt)
423 #define android_vprintLog(prio, cond, tag, fmt...) \
424 __android_log_vprint(prio, tag, fmt)
441 #define android_printAssert(cond, tag, fmt...) \
442 __android_log_assert(cond, tag, \
445 #define android_writeLog(prio, tag, text) \
446 __android_log_write(prio, tag, text)
448 #define android_bWriteLog(tag, payload, len) \
449 __android_log_bwrite(tag, payload, len)
450 #define android_btWriteLog(tag, type, payload, len) \
451 __android_log_btwrite(tag, type, payload, len)
454 #define android_testLog(prio, tag) (1)
457 #define android_setMinPriority(tag, prio) do{}while(0)
459 #define android_logToFile(tag, file) (0)
460 #define android_logToFd(tag, fd) (0)
474 int __android_log_buf_write(int bufID, int prio, const char *tag, const char *text);
475 int __android_log_buf_print(int bufID, int prio, const char *tag, const char *fmt, ...);