Lines Matching refs:cond
87 #define android_vprintLog(prio, cond, tag, ...) \
122 #define android_printAssert(cond, tag, ...) \
123 __android_log_assert(cond, tag, \
134 #define LOG_ALWAYS_FATAL_IF(cond, ...) \
135 ((__predict_false(cond)) ? (__FAKE_USE_VA_ARGS(__VA_ARGS__), \
136 ((void)android_printAssert(#cond, LOG_TAG, ##__VA_ARGS__))) \
153 #define LOG_FATAL_IF(cond, ...) __FAKE_USE_VA_ARGS(__VA_ARGS__)
162 #define LOG_FATAL_IF(cond, ...) LOG_ALWAYS_FATAL_IF(cond, ##__VA_ARGS__)
175 #define ALOG_ASSERT(cond, ...) LOG_FATAL_IF(!(cond), ##__VA_ARGS__)
214 #define ALOGV_IF(cond, ...) __FAKE_USE_VA_ARGS(__VA_ARGS__)
216 #define ALOGV_IF(cond, ...) \
217 ((__predict_false(cond)) \
231 #define ALOGD_IF(cond, ...) \
232 ((__predict_false(cond)) \
245 #define ALOGI_IF(cond, ...) \
246 ((__predict_false(cond)) \
259 #define ALOGW_IF(cond, ...) \
260 ((__predict_false(cond)) \
273 #define ALOGE_IF(cond, ...) \
274 ((__predict_false(cond)) \