Lines Matching refs:LOG_TAG

71 #ifndef LOG_TAG
72 #define LOG_TAG NULL
78 * Simplified macro to send a verbose log message using the current LOG_TAG.
84 #define ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
96 ? ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
102 * Simplified macro to send a debug log message using the current LOG_TAG.
105 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
111 ? ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
116 * Simplified macro to send an info log message using the current LOG_TAG.
119 #define ALOGI(...) ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__))
125 ? ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \
130 * Simplified macro to send a warning log message using the current LOG_TAG.
133 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
139 ? ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \
144 * Simplified macro to send an error log message using the current LOG_TAG.
147 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__))
153 ? ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
160 * Conditional based on whether the current LOG_TAG is enabled at
167 #define IF_ALOGV() IF_ALOG(LOG_VERBOSE, LOG_TAG)
172 * Conditional based on whether the current LOG_TAG is enabled at
176 #define IF_ALOGD() IF_ALOG(LOG_DEBUG, LOG_TAG)
180 * Conditional based on whether the current LOG_TAG is enabled at
184 #define IF_ALOGI() IF_ALOG(LOG_INFO, LOG_TAG)
188 * Conditional based on whether the current LOG_TAG is enabled at
192 #define IF_ALOGW() IF_ALOG(LOG_WARN, LOG_TAG)
196 * Conditional based on whether the current LOG_TAG is enabled at
200 #define IF_ALOGE() IF_ALOG(LOG_ERROR, LOG_TAG)
207 * Simplified macro to send a verbose system log message using the current LOG_TAG.
213 #define SLOGV(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
225 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
231 * Simplified macro to send a debug system log message using the current LOG_TAG.
234 #define SLOGD(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
240 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
245 * Simplified macro to send an info system log message using the current LOG_TAG.
248 #define SLOGI(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__))
254 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)) \
259 * Simplified macro to send a warning system log message using the current LOG_TAG.
262 #define SLOGW(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__))
268 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)) \
273 * Simplified macro to send an error system log message using the current LOG_TAG.
276 #define SLOGE(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__))
282 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
289 * Simplified macro to send a verbose radio log message using the current LOG_TAG.
295 #define RLOGV(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
307 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
313 * Simplified macro to send a debug radio log message using the current LOG_TAG.
316 #define RLOGD(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
322 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
327 * Simplified macro to send an info radio log message using the current LOG_TAG.
330 #define RLOGI(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__))
336 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)) \
341 * Simplified macro to send a warning radio log message using the current LOG_TAG.
344 #define RLOGW(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__))
350 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)) \
355 * Simplified macro to send an error radio log message using the current LOG_TAG.
358 #define RLOGE(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__))
364 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
380 ? ((void)android_printAssert(#cond, LOG_TAG, ## __VA_ARGS__)) \
386 ( ((void)android_printAssert(NULL, LOG_TAG, ## __VA_ARGS__)) )
415 * Stripped out of release builds. Uses the current LOG_TAG.