Home | History | Annotate | Download | only in mac

Lines Matching refs:condition

54 #define OSSTATUS_LOG_IF(severity, condition, status) \
56 LOG_IS_ON(severity) && (condition))
61 #define OSSTATUS_VLOG_IF(verbose_level, condition, status) \
63 VLOG_IS_ON(verbose_level) && (condition))
65 #define OSSTATUS_CHECK(condition, status) \
66 LAZY_STREAM(OSSTATUS_LOG_STREAM(FATAL, status), !(condition)) \
67 << "Check failed: " # condition << ". "
71 #define OSSTATUS_DLOG_IF(severity, condition, status) \
73 DLOG_IS_ON(severity) && (condition))
78 #define OSSTATUS_DVLOG_IF(verbose_level, condition, status) \
80 DVLOG_IS_ON(verbose_level) && (condition))
82 #define OSSTATUS_DCHECK(condition, status) \
84 DCHECK_IS_ON() && !(condition)) \
85 << "Check failed: " # condition << ". "