Go to the source code of this file.
|
using | absl::raw_logging_internal::AbortHook = void(*)(const char *file, int line, const char *buf_start, const char *prefix_end, const char *buf_end) |
|
using | absl::raw_logging_internal::InternalLogFunction = void(*)(absl::LogSeverity severity, const char *file, int line, const std::string &message) |
|
using | absl::raw_logging_internal::LogPrefixHook = bool(*)(absl::LogSeverity severity, const char *file, int line, char **buffer, int *buf_size) |
|
#define ABSL_INTERNAL_CHECK |
( |
|
condition, |
|
|
|
message |
|
) |
| |
Value:do { \
std::string death_message = "Check " #condition " failed: "; \
death_message += std::string(message);
\ } \
} while (0)
#define ABSL_PREDICT_FALSE(x)
#define ABSL_INTERNAL_LOG(severity, message)
Definition at line 83 of file raw_logging.h.
#define ABSL_INTERNAL_LOG |
( |
|
severity, |
|
|
|
message |
|
) |
| |
Value:do { \
constexpr
const char* absl_raw_logging_internal_basename =
\ ABSL_RAW_LOGGING_INTERNAL_##severity, \
absl_raw_logging_internal_basename, __LINE__, message); \
} while (0)
constexpr const char * Basename(const char *fname, int offset)
base_internal::AtomicHook< InternalLogFunction > internal_log_function
Definition at line 73 of file raw_logging.h.
#define ABSL_RAW_CHECK |
( |
|
condition, |
|
|
|
message |
|
) |
| |
Value:do { \
ABSL_RAW_LOG(FATAL,
"Check %s failed: %s", #condition, message); \
} \
} while (0)
#define ABSL_RAW_LOG(severity,...)
#define ABSL_PREDICT_FALSE(x)
Definition at line 57 of file raw_logging.h.
#define ABSL_RAW_LOG |
( |
|
severity, |
|
|
|
... |
|
) |
| |
Value:do { \
constexpr
const char* absl_raw_logging_internal_basename =
\ absl_raw_logging_internal_basename, \
__LINE__, __VA_ARGS__); \
} while (0)
constexpr const char * Basename(const char *fname, int offset)
void RawLog(absl::LogSeverity severity, const char *file, int line, const char *format,...) ABSL_PRINTF_ATTRIBUTE(4
Definition at line 42 of file raw_logging.h.