Searched refs:priority (Results 1 - 6 of 6) sorted by relevance

/system/core/toolbox/
H A Dlog.c92 android_LogPriority priority; local
97 priority = ANDROID_LOG_INFO;
114 priority = filterCharToPri(optarg[0]);
115 if (priority == ANDROID_LOG_UNKNOWN) {
141 __android_log_print(priority, tag, "%s", buffer);
/system/core/include/cutils/
H A Dlog.h157 * verbose priority.
169 * debug priority.
177 * info priority.
185 * warn priority.
193 * error priority.
348 #define ALOG(priority, tag, ...) \
349 LOG_PRI(ANDROID_##priority, tag, __VA_ARGS__)
353 * Log macro that allows you to specify a number for the priority.
356 #define LOG_PRI(priority, tag, ...) \
357 android_printLog(priority, ta
[all...]
H A Dlogprint.h46 android_LogPriority priority; member in struct:AndroidLogEntry_t
95 * returns 1 if this log line should be printed based on its priority
/system/core/liblog/
H A Dlogprint.c160 * returns 1 if this log line should be printed based on its priority
257 // The default level for this is DEBUG if the priority
266 // filter, the default is verbose if the priority is unspecified
359 * format: <priority:1><tag:N>\0<message:N>\0
370 // An well-formed entry must consist of at least a priority
401 entry->priority = buf->msg[0];
609 entry->priority = ANDROID_LOG_INFO;
718 priChar = filterPriToChar(entry->priority);
H A Dfake_log_device.c71 /* global minimum priority */
171 * and a letter indicating the minimum priority level we're expected to log.
188 /* global min priority defaults to "info" level */
218 /* default priority, if there's no ":" part; also zero out '*' */
299 * Return a human-readable string for the priority level. Always returns
302 static const char* getPriorityString(int priority) argument
310 idx = (int) priority - (int) ANDROID_LOG_VERBOSE;
538 * priority (1 byte)
/system/core/logcat/
H A Dlogcat.cpp171 // entry.priority, entry.messageLen, entry.message);
179 if (android_log_shouldPrintLine(g_logformat, entry.tag, entry.priority)) {
417 " <tag>[:priority]\n\n"
418 "where <tag> is a log component tag (or * for all) and priority is:\n"

Completed in 355 milliseconds