Lines Matching defs:LOG_TAG

66 #ifndef LOG_TAG
67 #define LOG_TAG NULL
73 * Simplified macro to send a verbose log message using the current LOG_TAG.
76 #define __ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
92 ? ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
98 * Simplified macro to send a debug log message using the current LOG_TAG.
101 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
107 ? ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
112 * Simplified macro to send an info log message using the current LOG_TAG.
115 #define ALOGI(...) ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__))
121 ? ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__)) \
126 * Simplified macro to send a warning log message using the current LOG_TAG.
129 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
135 ? ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__)) \
140 * Simplified macro to send an error log message using the current LOG_TAG.
143 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__))
149 ? ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
156 * Conditional based on whether the current LOG_TAG is enabled at
163 #define IF_ALOGV() IF_ALOG(LOG_VERBOSE, LOG_TAG)
168 * Conditional based on whether the current LOG_TAG is enabled at
172 #define IF_ALOGD() IF_ALOG(LOG_DEBUG, LOG_TAG)
176 * Conditional based on whether the current LOG_TAG is enabled at
180 #define IF_ALOGI() IF_ALOG(LOG_INFO, LOG_TAG)
184 * Conditional based on whether the current LOG_TAG is enabled at
188 #define IF_ALOGW() IF_ALOG(LOG_WARN, LOG_TAG)
192 * Conditional based on whether the current LOG_TAG is enabled at
196 #define IF_ALOGE() IF_ALOG(LOG_ERROR, LOG_TAG)
203 * Simplified macro to send a verbose system log message using the current LOG_TAG.
206 #define __SLOGV(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
222 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
228 * Simplified macro to send a debug system log message using the current LOG_TAG.
231 #define SLOGD(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
237 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
242 * Simplified macro to send an info system log message using the current LOG_TAG.
245 #define SLOGI(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__))
251 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)) \
256 * Simplified macro to send a warning system log message using the current LOG_TAG.
259 #define SLOGW(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__))
265 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)) \
270 * Simplified macro to send an error system log message using the current LOG_TAG.
273 #define SLOGE(...) ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__))
279 ? ((void)__android_log_buf_print(LOG_ID_SYSTEM, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
286 * Simplified macro to send a verbose radio log message using the current LOG_TAG.
289 #define __RLOGV(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
305 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
311 * Simplified macro to send a debug radio log message using the current LOG_TAG.
314 #define RLOGD(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
320 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)) \
325 * Simplified macro to send an info radio log message using the current LOG_TAG.
328 #define RLOGI(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__))
334 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS__)) \
339 * Simplified macro to send a warning radio log message using the current LOG_TAG.
342 #define RLOGW(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__))
348 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_WARN, LOG_TAG, __VA_ARGS__)) \
353 * Simplified macro to send an error radio log message using the current LOG_TAG.
356 #define RLOGE(...) ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__))
362 ? ((void)__android_log_buf_print(LOG_ID_RADIO, ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)) \
378 ? ((void)android_printAssert(#cond, LOG_TAG, ## __VA_ARGS__)) \
384 ( ((void)android_printAssert(NULL, LOG_TAG, ## __VA_ARGS__)) )
413 * Stripped out of release builds. Uses the current LOG_TAG.