Searched refs:FATAL (Results 1 - 5 of 5) sorted by relevance

/bionic/tools/relocation_packer/src/
H A Ddebug.cc21 // On destruction, flush and print the strings accumulated. Abort if FATAL.
31 case FATAL: tag = "FATAL"; break;
36 if (severity_ == FATAL)
H A Ddebug.h7 // LOG(tag) prints messages. Tags are INFO, WARNING, ERROR and FATAL.
8 // INFO prints to stdout, the others to stderr. FATAL aborts after printing.
18 // CHECK(predicate) logs a FATAL error if predicate is false.
34 enum Severity {INFO = 0, WARNING, ERROR, FATAL}; enumerator in enum:relocation_packer::Logger::Severity
86 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
108 // CHECK(predicate) fails with a FATAL log message if predicate is false.
109 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
113 // NOTREACHED() always fails with a FATAL log message.
114 #define NOTREACHED(_) (LOG(FATAL) \
H A Ddebug_unittest.cc40 LOG_IF(FATAL, false) << "FATAL log message, SHOULD NOT PRINT";
104 EXPECT_DEATH(LOG(FATAL) << "FATAL log message", "FATAL: FATAL log message");
106 LOG_IF(FATAL, true) << "FATAL log message", "FATAL: FATAL lo
[all...]
H A Delf_file.cc400 LOG_IF(FATAL, alignment_changes > 1)
427 LOG(FATAL) << "Cannot locate a LOAD segment with hole_start=0x" << std::hex << hole_start;
665 LOG(FATAL) << "Dynamic slot is not found for tag=" << tag;
/bionic/libc/seccomp/
H A Dseccomp_policy.cpp108 LOG(FATAL)
138 PLOG(FATAL) << "Could not set seccomp filter of size " << f.size();

Completed in 85 milliseconds