Home | History | Annotate | Download | only in mac

Lines Matching full:condition

66 #define MACH_LOG_IF(severity, condition, mach_err) \
68 LOG_IS_ON(severity) && (condition))
73 #define MACH_VLOG_IF(verbose_level, condition, mach_err) \
75 VLOG_IS_ON(verbose_level) && (condition))
77 #define MACH_CHECK(condition, mach_err) \
78 LAZY_STREAM(MACH_LOG_STREAM(FATAL, mach_err), !(condition)) \
79 << "Check failed: " # condition << ". "
83 #define MACH_DLOG_IF(severity, condition, mach_err) \
85 DLOG_IS_ON(severity) && (condition))
90 #define MACH_DVLOG_IF(verbose_level, condition, mach_err) \
92 MACH_DVLOG_IS_ON(verbose_level) && (condition))
94 #define MACH_DCHECK(condition, mach_err) \
96 DCHECK_IS_ON && !(condition)) \
97 << "Check failed: " # condition << ". "
131 #define BOOTSTRAP_LOG_IF(severity, condition, bootstrap_err) \
133 LOG_IS_ON(severity) && (condition))
138 #define BOOTSTRAP_VLOG_IF(verbose_level, condition, bootstrap_err) \
140 VLOG_IS_ON(verbose_level) && (condition))
142 #define BOOTSTRAP_CHECK(condition, bootstrap_err) \
143 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(FATAL, bootstrap_err), !(condition)) \
144 << "Check failed: " # condition << ". "
149 #define BOOTSTRAP_DLOG_IF(severity, condition, bootstrap_err) \
151 DLOG_IS_ON(severity) && (condition))
156 #define BOOTSTRAP_DVLOG_IF(verbose_level, condition, bootstrap_err) \
158 BOOTSTRAP_DVLOG_IS_ON(verbose_level) && (condition))
160 #define BOOTSTRAP_DCHECK(condition, bootstrap_err) \
162 DCHECK_IS_ON && !(condition)) \
163 << "Check failed: " # condition << ". "