Home | History | Annotate | Download | only in include

Lines Matching defs:LOG

32  * The output will be correct when the log file is shared between multiple
47 #include <utils/Log.h> /* For the LOG macro */
60 #define LOG ALOG
90 /* Based off the log priorities in android
91 /system/core/include/android/log.h */
119 * Simplified macro to send a verbose log message using the current MPL_LOG_TAG.
161 * Simplified macro to send a debug log message using the current MPL_LOG_TAG.
175 * Simplified macro to send an info log message using the current MPL_LOG_TAG.
193 * Simplified macro to send a warning log message using the current MPL_LOG_TAG.
211 * Simplified macro to send an error log message using the current MPL_LOG_TAG.
231 * Log a fatal error. If the given condition fails, this stops program
268 * Assertion that generates a log message when the assertion fails.
277 * Basic log message macro.
290 * Log macro that allows you to specify a number for the priority.
295 LOG(priority, tag, fmt, ##__VA_ARGS__)
306 * Log macro that allows you to pass in a varargs ("args" is a va_list).