Home | History | Annotate | Download | only in glog

Lines Matching defs:FATAL

5 // Supported macros are : LOG(INFO), LOG(WARNING), LOG(ERROR), LOG(FATAL),
26 // Valid severity levels include INFO, WARNING, ERROR, FATAL.
29 // LOG(FATAL) outputs to the log and then terminates.
38 // <=-3 - Fatal
39 // Note that VLOG(FATAL) will terminate the program.
82 const int FATAL = -3;
95 const int FATAL = ::FATAL;
152 if (severity_ > MAX_LOG_LEVEL && severity_ > FATAL) {
158 ANDROID_LOG_FATAL, // LOG(FATAL)
168 int android_level_index = std::min(std::max(FATAL, severity_),
169 kMaxVerboseLevel) - FATAL;
176 if (severity_ == FATAL) {
189 // Android logging at level FATAL does not terminate execution, so abort()
191 if (severity_ == FATAL) {
298 MessageLogger((char *)__FILE__, __LINE__, "native", FATAL).stream()
305 #define CHECK(condition) LOG_IF_FALSE(FATAL, condition) \
310 #define DCHECK(condition) LOG_IF_FALSE(FATAL, condition) \
314 #define DCHECK(condition) if (false) LOG_IF_FALSE(FATAL, condition) \
322 #define CHECK_OP(val1, val2, op) LOG_IF_FALSE(FATAL, (val1 op val2)) \