Home | History | Annotate | Download | only in mac

Lines Matching refs:condition

62 #define OSSTATUS_LOG_IF(severity, condition, status) \
64 LOG_IS_ON(severity) && (condition))
69 #define OSSTATUS_VLOG_IF(verbose_level, condition, status) \
71 VLOG_IS_ON(verbose_level) && (condition))
73 #define OSSTATUS_CHECK(condition, status) \
74 LAZY_STREAM(OSSTATUS_LOG_STREAM(FATAL, status), !(condition)) \
75 << "Check failed: " # condition << ". "
79 #define OSSTATUS_DLOG_IF(severity, condition, status) \
81 DLOG_IS_ON(severity) && (condition))
86 #define OSSTATUS_DVLOG_IF(verbose_level, condition, status) \
88 MAC_DVLOG_IS_ON(verbose_level) && (condition))
90 #define OSSTATUS_DCHECK(condition, status) \
92 DCHECK_IS_ON && !(condition)) \
93 << "Check failed: " # condition << ". "