Home | History | Annotate | Download | only in mac

Lines Matching refs:severity

40                  LogSeverity severity,
58 #define MACH_LOG_STREAM(severity, mach_err) \
59 COMPACT_GOOGLE_LOG_EX_ ## severity(MachLogMessage, mach_err).stream()
64 #define MACH_LOG(severity, mach_err) \
65 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), LOG_IS_ON(severity))
66 #define MACH_LOG_IF(severity, condition, mach_err) \
67 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \
68 LOG_IS_ON(severity) && (condition))
81 #define MACH_DLOG(severity, mach_err) \
82 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), DLOG_IS_ON(severity))
83 #define MACH_DLOG_IF(severity, condition, mach_err) \
84 LAZY_STREAM(MACH_LOG_STREAM(severity, mach_err), \
85 DLOG_IS_ON(severity) && (condition))
107 LogSeverity severity,
121 #define BOOTSTRAP_LOG_STREAM(severity, bootstrap_err) \
122 COMPACT_GOOGLE_LOG_EX_ ## severity(BootstrapLogMessage, \
128 #define BOOTSTRAP_LOG(severity, bootstrap_err) \
129 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, \
130 bootstrap_err), LOG_IS_ON(severity))
131 #define BOOTSTRAP_LOG_IF(severity, condition, bootstrap_err) \
132 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, bootstrap_err), \
133 LOG_IS_ON(severity) && (condition))
146 #define BOOTSTRAP_DLOG(severity, bootstrap_err) \
147 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, bootstrap_err), \
148 DLOG_IS_ON(severity))
149 #define BOOTSTRAP_DLOG_IF(severity, condition, bootstrap_err) \
150 LAZY_STREAM(BOOTSTRAP_LOG_STREAM(severity, bootstrap_err), \
151 DLOG_IS_ON(severity) && (condition))