Lines Matching refs:severity

40                  LogSeverity severity,
69 #define MACH_LOG_STREAM(severity, mach_err) \ argument
70 COMPACT_GOOGLE_LOG_EX_ ## severity(MachLogMessage, mach_err).stream()
75 #define MACH_LOG(severity, mach_err) \ argument
76 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), LOG_IS_ON(severity))
77 #define MACH_LOG_IF(severity, condition, mach_err) \ argument
78 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \
79 LOG_IS_ON(severity) && (condition))
92 #define MACH_DLOG(severity, mach_err) \ argument
93 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), DLOG_IS_ON(severity))
94 #define MACH_DLOG_IF(severity, condition, mach_err) \ argument
95 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \
96 DLOG_IS_ON(severity) && (condition))
118 LogSeverity severity,
143 #define BOOTSTRAP_LOG_STREAM(severity, bootstrap_err) \ argument
144 COMPACT_GOOGLE_LOG_EX_ ## severity(BootstrapLogMessage, \
150 #define BOOTSTRAP_LOG(severity, bootstrap_err) \ argument
151 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, \
152 bootstrap_err), LOG_IS_ON(severity))
153 #define BOOTSTRAP_LOG_IF(severity, condition, bootstrap_err) \ argument
154 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, bootstrap_err), \
155 LOG_IS_ON(severity) && (condition))
168 #define BOOTSTRAP_DLOG(severity, bootstrap_err) \ argument
169 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, bootstrap_err), \
170 DLOG_IS_ON(severity))
171 #define BOOTSTRAP_DLOG_IF(severity, condition, bootstrap_err) \ argument
172 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, bootstrap_err), \
173 DLOG_IS_ON(severity) && (condition))