Lines Matching refs:cond
141 #define CONDITION(cond) ((cond) != 0) argument
146 #define MPL_LOGV_IF(cond, fmt, ...) \ argument
149 #define MPL_LOGV_IF(cond, fmt, ...) \
150 ((CONDITION(cond)) \
164 #define MPL_LOGD_IF(cond, fmt, ...) \ argument
165 ((CONDITION(cond)) \
178 #define MPL_LOGI_IF(cond, fmt, ...) \ argument
179 ((CONDITION(cond)) \
196 #define MPL_LOGW_IF(cond, fmt, ...) \ argument
197 ((CONDITION(cond)) \
214 #define MPL_LOGE_IF(cond, fmt, ...) \ argument
215 ((CONDITION(cond)) \
228 #define MPL_LOG_ALWAYS_FATAL_IF(cond, fmt, ...) \ argument
229 ((CONDITION(cond)) \
230 ? ((void)android_printAssert(#cond, MPL_LOG_TAG, \
242 #define MPL_LOG_FATAL_IF(cond, fmt, ...) \ argument
245 MPL_LOG_ALWAYS_FATAL_IF(cond, fmt, ##__VA_ARGS__); \
253 #define MPL_LOG_FATAL_IF(cond, fmt, ...) \
254 MPL_LOG_ALWAYS_FATAL_IF(cond, fmt, ##__VA_ARGS__)
263 #define MPL_LOG_ASSERT(cond, fmt, ...) \ argument
264 MPL_LOG_FATAL_IF(!(cond), fmt, ##__VA_ARGS__)