Searched refs:priority (Results 1 – 6 of 6) sorted by relevance
/system/core/toolbox/ |
D | log.c | 92 android_LogPriority priority; in log_main() local 97 priority = ANDROID_LOG_INFO; in log_main() 114 priority = filterCharToPri(optarg[0]); in log_main() 115 if (priority == ANDROID_LOG_UNKNOWN) { in log_main() 141 __android_log_print(priority, tag, "%s", buffer); in log_main()
|
/system/core/include/cutils/ |
D | log.h | 348 #define ALOG(priority, tag, ...) \ argument 349 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__) 356 #define LOG_PRI(priority, tag, ...) \ argument 357 android_printLog(priority, tag, __VA_ARGS__) 364 #define LOG_PRI_VA(priority, tag, fmt, args) \ argument 365 android_vprintLog(priority, NULL, tag, fmt, args) 372 #define IF_ALOG(priority, tag) \ argument 373 if (android_testLog(ANDROID_##priority, tag))
|
D | logprint.h | 46 android_LogPriority priority; member
|
/system/core/liblog/ |
D | fake_log_device.c | 302 static const char* getPriorityString(int priority) in getPriorityString() argument 310 idx = (int) priority - (int) ANDROID_LOG_VERBOSE; in getPriorityString()
|
D | logprint.c | 401 entry->priority = buf->msg[0]; in android_log_processLogBuffer() 609 entry->priority = ANDROID_LOG_INFO; in android_log_processBinaryLogBuffer() 718 priChar = filterPriToChar(entry->priority); in android_log_formatLogLine()
|
/system/core/logcat/ |
D | logcat.cpp | 179 if (android_log_shouldPrintLine(g_logformat, entry.tag, entry.priority)) { in processBuffer()
|