Lines Matching refs:LOG_TAG

46 #ifndef LOG_TAG
47 #define LOG_TAG "RasterMill"
53 * Simplified macro to send a verbose log message using the current LOG_TAG.
59 #define ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
71 ? ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
77 * Simplified macro to send a debug log message using the current LOG_TAG.
80 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
86 ? ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
91 * Simplified macro to send an info log message using the current LOG_TAG.
94 #define ALOGI(...) ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__))
100 ? ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \
105 * Simplified macro to send a warning log message using the current LOG_TAG.
108 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
114 ? ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \
119 * Simplified macro to send an error log message using the current LOG_TAG.
122 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__))
128 ? ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
135 * Conditional based on whether the current LOG_TAG is enabled at
142 #define IF_ALOGV() IF_ALOG(LOG_VERBOSE, LOG_TAG)
147 * Conditional based on whether the current LOG_TAG is enabled at
151 #define IF_ALOGD() IF_ALOG(LOG_DEBUG, LOG_TAG)
155 * Conditional based on whether the current LOG_TAG is enabled at
159 #define IF_ALOGI() IF_ALOG(LOG_INFO, LOG_TAG)
163 * Conditional based on whether the current LOG_TAG is enabled at
167 #define IF_ALOGW() IF_ALOG(LOG_WARN, LOG_TAG)
171 * Conditional based on whether the current LOG_TAG is enabled at
175 #define IF_ALOGE() IF_ALOG(LOG_ERROR, LOG_TAG)
189 ? ((void)android_printAssert(#cond, LOG_TAG, ## __VA_ARGS__)) \
195 ( ((void)android_printAssert(NULL, LOG_TAG, ## __VA_ARGS__)) )
224 * Stripped out of release builds. Uses the current LOG_TAG.