Searched defs:LOG (Results 1 - 1 of 1) sorted by relevance

/art/runtime/base/
H A Dlogging.h93 // an abort. For example: LOG(FATAL) << "We didn't expect to reach here";
94 #define LOG(severity) ::art::LogMessage(__FILE__, __LINE__, severity, -1).stream() macro
96 // A variant of LOG that also logs the current errno value. To be used when library calls fail.
100 #define UNIMPLEMENTED(level) LOG(level) << __PRETTY_FUNCTION__ << " unimplemented "
105 // Variant of LOG that logs when verbose logging is enabled for a module. For example,
114 // Check whether condition x holds and LOG(FATAL) if not. The value of the expression x is only
131 // Check whether a condition holds between x and y, LOG(FATAL) if not. The value of the expressions
144 LOG(::art::FATAL) << "Check failed: " \
149 // Check for string (const char*) equality between s1 and s2, LOG(FATAL) if not.
153 // Perform the pthread function call(args), LOG(FATA
[all...]

Completed in 54 milliseconds