![]() |
OR-Tools
8.2
|
Go to the source code of this file.
Classes | |
| struct | CheckOpString |
| struct | DummyClassToDefineOperator |
| class | CheckOpMessageBuilder |
| struct | CompileAssert< bool > |
| class | LogStreamBuf |
| class | LogMessage |
| class | LogMessage::LogStream |
| class | LogMessageFatal |
| class | ErrnoLogMessage |
| class | LogMessageVoidify |
| class | LogSink |
| class | Logger |
| class | NullStream |
| class | NullStreamFatal |
Namespaces | |
| namespace | |
| namespace | google::base |
| namespace | google::base::internal |
| namespace | google::logging_internal |
| namespace | google::base_logging |
Macros | |
| #define | QCHECK CHECK |
| #define | ABSL_DIE_IF_NULL CHECK_NOTNULL |
| #define | CHECK_OK(x) CHECK((x).ok()) |
| #define | GLOG_MSVC_PUSH_DISABLE_WARNING(n) |
| #define | GLOG_MSVC_POP_WARNING() |
| #define | ATTRIBUTE_NOINLINE __attribute__((noinline)) |
| #define | ATTRIBUTE_NORETURN __attribute__((noreturn)) |
| #define | GOOGLE_STRIP_LOG 0 |
| #define | GOOGLE_PREDICT_BRANCH_NOT_TAKEN(x) (__builtin_expect(x, 0)) |
| #define | GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0)) |
| #define | GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) |
| #define | COMPACT_GOOGLE_LOG_INFO google::LogMessage(__FILE__, __LINE__) |
| #define | LOG_TO_STRING_INFO(message) google::LogMessage(__FILE__, __LINE__, google::GLOG_INFO, message) |
| #define | COMPACT_GOOGLE_LOG_WARNING google::LogMessage(__FILE__, __LINE__, google::GLOG_WARNING) |
| #define | LOG_TO_STRING_WARNING(message) google::LogMessage(__FILE__, __LINE__, google::GLOG_WARNING, message) |
| #define | COMPACT_GOOGLE_LOG_ERROR google::LogMessage(__FILE__, __LINE__, google::GLOG_ERROR) |
| #define | LOG_TO_STRING_ERROR(message) google::LogMessage(__FILE__, __LINE__, google::GLOG_ERROR, message) |
| #define | COMPACT_GOOGLE_LOG_FATAL google::LogMessageFatal(__FILE__, __LINE__) |
| #define | LOG_TO_STRING_FATAL(message) google::LogMessage(__FILE__, __LINE__, google::GLOG_FATAL, message) |
| #define | DCHECK_IS_ON() 1 |
| #define | COMPACT_GOOGLE_LOG_DFATAL google::LogMessage(__FILE__, __LINE__, google::GLOG_FATAL) |
| #define | GOOGLE_LOG_INFO(counter) |
| #define | SYSLOG_INFO(counter) |
| #define | GOOGLE_LOG_WARNING(counter) |
| #define | SYSLOG_WARNING(counter) |
| #define | GOOGLE_LOG_ERROR(counter) |
| #define | SYSLOG_ERROR(counter) |
| #define | GOOGLE_LOG_FATAL(counter) |
| #define | SYSLOG_FATAL(counter) |
| #define | GOOGLE_LOG_DFATAL(counter) |
| #define | SYSLOG_DFATAL(counter) |
| #define | LOG(severity) COMPACT_GOOGLE_LOG_##severity.stream() |
| #define | SYSLOG(severity) SYSLOG_##severity(0).stream() |
| #define | LOG_TO_SINK(sink, severity) |
| #define | LOG_TO_SINK_BUT_NOT_TO_LOGFILE(sink, severity) |
| #define | LOG_TO_STRING(severity, message) LOG_TO_STRING_##severity(static_cast<string*>(message)).stream() |
| #define | LOG_STRING(severity, outvec) |
| #define | LOG_IF(severity, condition) |
| #define | SYSLOG_IF(severity, condition) |
| #define | LOG_ASSERT(condition) LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition |
| #define | SYSLOG_ASSERT(condition) SYSLOG_IF(FATAL, !(condition)) << "Assert failed: " #condition |
| #define | CHECK(condition) |
| #define | DEFINE_CHECK_OP_IMPL(name, op) |
| #define | CHECK_OP_LOG(name, op, val1, val2, log) |
| #define | CHECK_OP(name, op, val1, val2) CHECK_OP_LOG(name, op, val1, val2, google::LogMessageFatal) |
| #define | CHECK_EQ(val1, val2) CHECK_OP(_EQ, ==, val1, val2) |
| #define | CHECK_NE(val1, val2) CHECK_OP(_NE, !=, val1, val2) |
| #define | CHECK_LE(val1, val2) CHECK_OP(_LE, <=, val1, val2) |
| #define | CHECK_LT(val1, val2) CHECK_OP(_LT, <, val1, val2) |
| #define | CHECK_GE(val1, val2) CHECK_OP(_GE, >=, val1, val2) |
| #define | CHECK_GT(val1, val2) CHECK_OP(_GT, >, val1, val2) |
| #define | CHECK_NOTNULL(val) google::CheckNotNull(__FILE__, __LINE__, "'" #val "' Must be non NULL", (val)) |
| #define | DECLARE_CHECK_STROP_IMPL(func, expected) |
| #define | CHECK_STROP(func, op, expected, s1, s2) |
| #define | CHECK_STREQ(s1, s2) CHECK_STROP(strcmp, ==, true, s1, s2) |
| #define | CHECK_STRNE(s1, s2) CHECK_STROP(strcmp, !=, false, s1, s2) |
| #define | CHECK_STRCASEEQ(s1, s2) CHECK_STROP(strcasecmp, ==, true, s1, s2) |
| #define | CHECK_STRCASENE(s1, s2) CHECK_STROP(strcasecmp, !=, false, s1, s2) |
| #define | CHECK_INDEX(I, A) CHECK(I < (sizeof(A) / sizeof(A[0]))) |
| #define | CHECK_BOUND(B, A) CHECK(B <= (sizeof(A) / sizeof(A[0]))) |
| #define | CHECK_DOUBLE_EQ(val1, val2) |
| #define | CHECK_NEAR(val1, val2, margin) |
| #define | PLOG(severity) GOOGLE_PLOG(severity, 0).stream() |
| #define | GOOGLE_PLOG(severity, counter) |
| #define | PLOG_IF(severity, condition) |
| #define | PCHECK(condition) |
| #define | CHECK_ERR(invocation) |
| #define | LOG_EVERY_N_VARNAME(base, line) LOG_EVERY_N_VARNAME_CONCAT(base, line) |
| #define | LOG_EVERY_N_VARNAME_CONCAT(base, line) base##line |
| #define | LOG_OCCURRENCES LOG_EVERY_N_VARNAME(occurrences_, __LINE__) |
| #define | LOG_OCCURRENCES_MOD_N LOG_EVERY_N_VARNAME(occurrences_mod_n_, __LINE__) |
| #define | SOME_KIND_OF_LOG_EVERY_N(severity, n, what_to_do) |
| #define | SOME_KIND_OF_LOG_IF_EVERY_N(severity, condition, n, what_to_do) |
| #define | SOME_KIND_OF_PLOG_EVERY_N(severity, n, what_to_do) |
| #define | SOME_KIND_OF_LOG_FIRST_N(severity, n, what_to_do) |
| #define | LOG_EVERY_N(severity, n) SOME_KIND_OF_LOG_EVERY_N(severity, (n), google::LogMessage::SendToLog) |
| #define | SYSLOG_EVERY_N(severity, n) |
| #define | PLOG_EVERY_N(severity, n) SOME_KIND_OF_PLOG_EVERY_N(severity, (n), google::LogMessage::SendToLog) |
| #define | LOG_FIRST_N(severity, n) SOME_KIND_OF_LOG_FIRST_N(severity, (n), google::LogMessage::SendToLog) |
| #define | LOG_IF_EVERY_N(severity, condition, n) |
| #define | DLOG(severity) LOG(severity) |
| #define | DVLOG(verboselevel) VLOG(verboselevel) |
| #define | DLOG_IF(severity, condition) LOG_IF(severity, condition) |
| #define | DLOG_EVERY_N(severity, n) LOG_EVERY_N(severity, n) |
| #define | DLOG_IF_EVERY_N(severity, condition, n) LOG_IF_EVERY_N(severity, condition, n) |
| #define | DLOG_ASSERT(condition) LOG_ASSERT(condition) |
| #define | DCHECK(condition) CHECK(condition) |
| #define | DCHECK_EQ(val1, val2) CHECK_EQ(val1, val2) |
| #define | DCHECK_NE(val1, val2) CHECK_NE(val1, val2) |
| #define | DCHECK_LE(val1, val2) CHECK_LE(val1, val2) |
| #define | DCHECK_LT(val1, val2) CHECK_LT(val1, val2) |
| #define | DCHECK_GE(val1, val2) CHECK_GE(val1, val2) |
| #define | DCHECK_GT(val1, val2) CHECK_GT(val1, val2) |
| #define | DCHECK_NOTNULL(val) CHECK_NOTNULL(val) |
| #define | DCHECK_STREQ(str1, str2) CHECK_STREQ(str1, str2) |
| #define | DCHECK_STRCASEEQ(str1, str2) CHECK_STRCASEEQ(str1, str2) |
| #define | DCHECK_STRNE(str1, str2) CHECK_STRNE(str1, str2) |
| #define | DCHECK_STRCASENE(str1, str2) CHECK_STRCASENE(str1, str2) |
| #define | VLOG(verboselevel) LOG_IF(INFO, VLOG_IS_ON(verboselevel)) |
| #define | VLOG_IF(verboselevel, condition) LOG_IF(INFO, (condition) && VLOG_IS_ON(verboselevel)) |
| #define | VLOG_EVERY_N(verboselevel, n) LOG_IF_EVERY_N(INFO, VLOG_IS_ON(verboselevel), n) |
| #define | VLOG_IF_EVERY_N(verboselevel, condition, n) LOG_IF_EVERY_N(INFO, (condition) && VLOG_IS_ON(verboselevel), n) |
| #define | LOG_AT_LEVEL(severity) google::LogMessage(__FILE__, __LINE__, severity).stream() |
Enumerations | |
| enum | PRIVATE_Counter { COUNTER } |
Functions | |
| void | FixFlagsAndEnvironmentForSwig () |
| ABSL_DECLARE_FLAG (bool, logtostderr) | |
| ABSL_DECLARE_FLAG (bool, alsologtostderr) | |
| ABSL_DECLARE_FLAG (bool, colorlogtostderr) | |
| ABSL_DECLARE_FLAG (int, stderrthreshold) | |
| ABSL_DECLARE_FLAG (bool, log_prefix) | |
| ABSL_DECLARE_FLAG (int, logbuflevel) | |
| ABSL_DECLARE_FLAG (int, logbufsecs) | |
| ABSL_DECLARE_FLAG (int, minloglevel) | |
| ABSL_DECLARE_FLAG (std::string, log_dir) | |
| ABSL_DECLARE_FLAG (int, logfile_mode) | |
| ABSL_DECLARE_FLAG (std::string, log_link) | |
| ABSL_DECLARE_FLAG (int, v) | |
| ABSL_DECLARE_FLAG (int, max_log_size) | |
| ABSL_DECLARE_FLAG (bool, stop_logging_if_full_disk) | |
| void | InitGoogleLogging (const char *argv0) |
| void | ShutdownGoogleLogging () |
| void | InstallFailureFunction (void(*fail_func)()) |
| template<class T > | |
| const T & | GetReferenceableValue (const T &t) |
| char | GetReferenceableValue (char t) |
| unsigned char | GetReferenceableValue (unsigned char t) |
| signed char | GetReferenceableValue (signed char t) |
| int16 | GetReferenceableValue (int16 t) |
| uint16 | GetReferenceableValue (uint16 t) |
| int | GetReferenceableValue (int t) |
| unsigned int | GetReferenceableValue (unsigned int t) |
| int64 | GetReferenceableValue (int64 t) |
| uint64 | GetReferenceableValue (uint64 t) |
| std::ostream & | operator<< (std::ostream &out, const google::DummyClassToDefineOperator &) |
| template<typename T > | |
| void | MakeCheckOpValueString (std::ostream *os, const T &v) |
| template<> | |
| GOOGLE_GLOG_DLL_DECL void | MakeCheckOpValueString (std::ostream *os, const char &v) |
| template<> | |
| GOOGLE_GLOG_DLL_DECL void | MakeCheckOpValueString (std::ostream *os, const signed char &v) |
| template<> | |
| GOOGLE_GLOG_DLL_DECL void | MakeCheckOpValueString (std::ostream *os, const unsigned char &v) |
| template<typename T1 , typename T2 > | |
| std::string * | MakeCheckOpString (const T1 &v1, const T2 &v2, const char *exprtext) ATTRIBUTE_NOINLINE |
| LogSeverity | NormalizeSeverity (LogSeverity s) |
| DEFINE_CHECK_OP_IMPL (Check_EQ,==) DEFINE_CHECK_OP_IMPL(Check_NE | |
| void | LogAtLevel (int const severity, std::string const &msg) |
| template<typename T > | |
| T * | CheckNotNull (const char *file, int line, const char *names, T *t) |
| ostream & | operator<< (ostream &os, const PRIVATE_Counter &) |
| void | FlushLogFiles (LogSeverity min_severity) |
| void | FlushLogFilesUnsafe (LogSeverity min_severity) |
| void | SetLogDestination (LogSeverity severity, const char *base_filename) |
| void | SetLogSymlink (LogSeverity severity, const char *symlink_basename) |
| void | AddLogSink (LogSink *destination) |
| void | RemoveLogSink (LogSink *destination) |
| void | SetLogFilenameExtension (const char *ext) |
| void | SetStderrLogging (LogSeverity min_severity) |
| void | LogToStderr () |
| const vector< string > & | GetLoggingDirectories () |
| void | TestOnly_ClearLoggingDirectoriesList () |
| void | GetExistingTempDirectories (vector< string > *list) |
| void | ReprintFatalMessage () |
| const char * | GetLogSeverityName (LogSeverity severity) |
| GOOGLE_GLOG_DLL_DECL Logger * | GetLogger (LogSeverity level) |
| GOOGLE_GLOG_DLL_DECL void | SetLogger (LogSeverity level, Logger *logger) |
| int | posix_strerror_r (int err, char *buf, size_t len) |
| string | StrError (int err) |
| template<class T > | |
| NullStream & | operator<< (NullStream &str, const T &) |
| #define ABSL_DIE_IF_NULL CHECK_NOTNULL |
Definition at line 39 of file base/logging.h.
| #define ATTRIBUTE_NOINLINE __attribute__((noinline)) |
Definition at line 54 of file base/logging.h.
| #define ATTRIBUTE_NORETURN __attribute__((noreturn)) |
Definition at line 55 of file base/logging.h.
| #define CHECK | ( | condition | ) |
Definition at line 495 of file base/logging.h.
| #define CHECK_BOUND | ( | B, | |
| A | |||
| ) | CHECK(B <= (sizeof(A) / sizeof(A[0]))) |
Definition at line 741 of file base/logging.h.
| #define CHECK_DOUBLE_EQ | ( | val1, | |
| val2 | |||
| ) |
Definition at line 743 of file base/logging.h.
| #define CHECK_EQ | ( | val1, | |
| val2 | |||
| ) | CHECK_OP(_EQ, ==, val1, val2) |
Definition at line 697 of file base/logging.h.
| #define CHECK_ERR | ( | invocation | ) |
Definition at line 786 of file base/logging.h.
| #define CHECK_GE | ( | val1, | |
| val2 | |||
| ) | CHECK_OP(_GE, >=, val1, val2) |
Definition at line 701 of file base/logging.h.
| #define CHECK_GT | ( | val1, | |
| val2 | |||
| ) | CHECK_OP(_GT, >, val1, val2) |
Definition at line 702 of file base/logging.h.
| #define CHECK_INDEX | ( | I, | |
| A | |||
| ) | CHECK(I < (sizeof(A) / sizeof(A[0]))) |
Definition at line 740 of file base/logging.h.
| #define CHECK_LE | ( | val1, | |
| val2 | |||
| ) | CHECK_OP(_LE, <=, val1, val2) |
Definition at line 699 of file base/logging.h.
| #define CHECK_LT | ( | val1, | |
| val2 | |||
| ) | CHECK_OP(_LT, <, val1, val2) |
Definition at line 700 of file base/logging.h.
| #define CHECK_NE | ( | val1, | |
| val2 | |||
| ) | CHECK_OP(_NE, !=, val1, val2) |
Definition at line 698 of file base/logging.h.
| #define CHECK_NEAR | ( | val1, | |
| val2, | |||
| margin | |||
| ) |
Definition at line 749 of file base/logging.h.
| #define CHECK_NOTNULL | ( | val | ) | google::CheckNotNull(__FILE__, __LINE__, "'" #val "' Must be non NULL", (val)) |
Definition at line 707 of file base/logging.h.
| #define CHECK_OK | ( | x | ) | CHECK((x).ok()) |
Definition at line 40 of file base/logging.h.
| #define CHECK_OP | ( | name, | |
| op, | |||
| val1, | |||
| val2 | |||
| ) | CHECK_OP_LOG(name, op, val1, val2, google::LogMessageFatal) |
Definition at line 672 of file base/logging.h.
| #define CHECK_OP_LOG | ( | name, | |
| op, | |||
| val1, | |||
| val2, | |||
| log | |||
| ) |
Definition at line 656 of file base/logging.h.
| #define CHECK_STRCASEEQ | ( | s1, | |
| s2 | |||
| ) | CHECK_STROP(strcasecmp, ==, true, s1, s2) |
Definition at line 737 of file base/logging.h.
| #define CHECK_STRCASENE | ( | s1, | |
| s2 | |||
| ) | CHECK_STROP(strcasecmp, !=, false, s1, s2) |
Definition at line 738 of file base/logging.h.
| #define CHECK_STREQ | ( | s1, | |
| s2 | |||
| ) | CHECK_STROP(strcmp, ==, true, s1, s2) |
Definition at line 735 of file base/logging.h.
| #define CHECK_STRNE | ( | s1, | |
| s2 | |||
| ) | CHECK_STROP(strcmp, !=, false, s1, s2) |
Definition at line 736 of file base/logging.h.
| #define CHECK_STROP | ( | func, | |
| op, | |||
| expected, | |||
| s1, | |||
| s2 | |||
| ) |
Definition at line 723 of file base/logging.h.
| #define COMPACT_GOOGLE_LOG_DFATAL google::LogMessage(__FILE__, __LINE__, google::GLOG_FATAL) |
Definition at line 355 of file base/logging.h.
| #define COMPACT_GOOGLE_LOG_ERROR google::LogMessage(__FILE__, __LINE__, google::GLOG_ERROR) |
Definition at line 326 of file base/logging.h.
| #define COMPACT_GOOGLE_LOG_FATAL google::LogMessageFatal(__FILE__, __LINE__) |
Definition at line 336 of file base/logging.h.
| #define COMPACT_GOOGLE_LOG_INFO google::LogMessage(__FILE__, __LINE__) |
Definition at line 307 of file base/logging.h.
| #define COMPACT_GOOGLE_LOG_WARNING google::LogMessage(__FILE__, __LINE__, google::GLOG_WARNING) |
Definition at line 316 of file base/logging.h.
| #define DCHECK | ( | condition | ) | CHECK(condition) |
Definition at line 884 of file base/logging.h.
| #define DCHECK_EQ | ( | val1, | |
| val2 | |||
| ) | CHECK_EQ(val1, val2) |
Definition at line 885 of file base/logging.h.
| #define DCHECK_GE | ( | val1, | |
| val2 | |||
| ) | CHECK_GE(val1, val2) |
Definition at line 889 of file base/logging.h.
| #define DCHECK_GT | ( | val1, | |
| val2 | |||
| ) | CHECK_GT(val1, val2) |
Definition at line 890 of file base/logging.h.
| #define DCHECK_IS_ON | ( | ) | 1 |
Definition at line 347 of file base/logging.h.
| #define DCHECK_LE | ( | val1, | |
| val2 | |||
| ) | CHECK_LE(val1, val2) |
Definition at line 887 of file base/logging.h.
| #define DCHECK_LT | ( | val1, | |
| val2 | |||
| ) | CHECK_LT(val1, val2) |
Definition at line 888 of file base/logging.h.
| #define DCHECK_NE | ( | val1, | |
| val2 | |||
| ) | CHECK_NE(val1, val2) |
Definition at line 886 of file base/logging.h.
| #define DCHECK_NOTNULL | ( | val | ) | CHECK_NOTNULL(val) |
Definition at line 891 of file base/logging.h.
| #define DCHECK_STRCASEEQ | ( | str1, | |
| str2 | |||
| ) | CHECK_STRCASEEQ(str1, str2) |
Definition at line 893 of file base/logging.h.
| #define DCHECK_STRCASENE | ( | str1, | |
| str2 | |||
| ) | CHECK_STRCASENE(str1, str2) |
Definition at line 895 of file base/logging.h.
| #define DCHECK_STREQ | ( | str1, | |
| str2 | |||
| ) | CHECK_STREQ(str1, str2) |
Definition at line 892 of file base/logging.h.
| #define DCHECK_STRNE | ( | str1, | |
| str2 | |||
| ) | CHECK_STRNE(str1, str2) |
Definition at line 894 of file base/logging.h.
| #define DECLARE_CHECK_STROP_IMPL | ( | func, | |
| expected | |||
| ) |
Definition at line 712 of file base/logging.h.
| #define DEFINE_CHECK_OP_IMPL | ( | name, | |
| op | |||
| ) |
Definition at line 614 of file base/logging.h.
| #define DLOG | ( | severity | ) | LOG(severity) |
Definition at line 875 of file base/logging.h.
| #define DLOG_ASSERT | ( | condition | ) | LOG_ASSERT(condition) |
Definition at line 881 of file base/logging.h.
| #define DLOG_EVERY_N | ( | severity, | |
| n | |||
| ) | LOG_EVERY_N(severity, n) |
Definition at line 878 of file base/logging.h.
| #define DLOG_IF | ( | severity, | |
| condition | |||
| ) | LOG_IF(severity, condition) |
Definition at line 877 of file base/logging.h.
| #define DLOG_IF_EVERY_N | ( | severity, | |
| condition, | |||
| n | |||
| ) | LOG_IF_EVERY_N(severity, condition, n) |
Definition at line 879 of file base/logging.h.
| #define DVLOG | ( | verboselevel | ) | VLOG(verboselevel) |
Definition at line 876 of file base/logging.h.
| #define GLOG_MSVC_POP_WARNING | ( | ) |
Definition at line 53 of file base/logging.h.
| #define GLOG_MSVC_PUSH_DISABLE_WARNING | ( | n | ) |
Definition at line 52 of file base/logging.h.
| #define GOOGLE_LOG_DFATAL | ( | counter | ) |
Definition at line 385 of file base/logging.h.
| #define GOOGLE_LOG_ERROR | ( | counter | ) |
Definition at line 373 of file base/logging.h.
| #define GOOGLE_LOG_FATAL | ( | counter | ) |
Definition at line 379 of file base/logging.h.
| #define GOOGLE_LOG_INFO | ( | counter | ) |
Definition at line 361 of file base/logging.h.
| #define GOOGLE_LOG_WARNING | ( | counter | ) |
Definition at line 367 of file base/logging.h.
| #define GOOGLE_PLOG | ( | severity, | |
| counter | |||
| ) |
Definition at line 763 of file base/logging.h.
| #define GOOGLE_PREDICT_BRANCH_NOT_TAKEN | ( | x | ) | (__builtin_expect(x, 0)) |
Definition at line 78 of file base/logging.h.
| #define GOOGLE_PREDICT_FALSE | ( | x | ) | (__builtin_expect(x, 0)) |
Definition at line 86 of file base/logging.h.
| #define GOOGLE_PREDICT_TRUE | ( | x | ) | (__builtin_expect(!!(x), 1)) |
Definition at line 94 of file base/logging.h.
| #define GOOGLE_STRIP_LOG 0 |
Definition at line 68 of file base/logging.h.
| #define LOG | ( | severity | ) | COMPACT_GOOGLE_LOG_##severity.stream() |
Definition at line 420 of file base/logging.h.
Definition at line 486 of file base/logging.h.
| #define LOG_AT_LEVEL | ( | severity | ) | google::LogMessage(__FILE__, __LINE__, severity).stream() |
Definition at line 1184 of file base/logging.h.
| #define LOG_EVERY_N | ( | severity, | |
| n | |||
| ) | SOME_KIND_OF_LOG_EVERY_N(severity, (n), google::LogMessage::SendToLog) |
Definition at line 839 of file base/logging.h.
| #define LOG_EVERY_N_VARNAME | ( | base, | |
| line | |||
| ) | LOG_EVERY_N_VARNAME_CONCAT(base, line) |
Definition at line 792 of file base/logging.h.
| #define LOG_EVERY_N_VARNAME_CONCAT | ( | base, | |
| line | |||
| ) | base##line |
Definition at line 793 of file base/logging.h.
| #define LOG_FIRST_N | ( | severity, | |
| n | |||
| ) | SOME_KIND_OF_LOG_FIRST_N(severity, (n), google::LogMessage::SendToLog) |
Definition at line 849 of file base/logging.h.
| #define LOG_IF | ( | severity, | |
| condition | |||
| ) |
Definition at line 479 of file base/logging.h.
| #define LOG_IF_EVERY_N | ( | severity, | |
| condition, | |||
| n | |||
| ) |
Definition at line 852 of file base/logging.h.
| #define LOG_OCCURRENCES LOG_EVERY_N_VARNAME(occurrences_, __LINE__) |
Definition at line 795 of file base/logging.h.
| #define LOG_OCCURRENCES_MOD_N LOG_EVERY_N_VARNAME(occurrences_mod_n_, __LINE__) |
Definition at line 796 of file base/logging.h.
| #define LOG_STRING | ( | severity, | |
| outvec | |||
| ) |
Definition at line 475 of file base/logging.h.
| #define LOG_TO_SINK | ( | sink, | |
| severity | |||
| ) |
Definition at line 445 of file base/logging.h.
| #define LOG_TO_SINK_BUT_NOT_TO_LOGFILE | ( | sink, | |
| severity | |||
| ) |
Definition at line 449 of file base/logging.h.
| #define LOG_TO_STRING | ( | severity, | |
| message | |||
| ) | LOG_TO_STRING_##severity(static_cast<string*>(message)).stream() |
Definition at line 464 of file base/logging.h.
| #define LOG_TO_STRING_ERROR | ( | message | ) | google::LogMessage(__FILE__, __LINE__, google::GLOG_ERROR, message) |
Definition at line 328 of file base/logging.h.
| #define LOG_TO_STRING_FATAL | ( | message | ) | google::LogMessage(__FILE__, __LINE__, google::GLOG_FATAL, message) |
Definition at line 337 of file base/logging.h.
| #define LOG_TO_STRING_INFO | ( | message | ) | google::LogMessage(__FILE__, __LINE__, google::GLOG_INFO, message) |
Definition at line 308 of file base/logging.h.
| #define LOG_TO_STRING_WARNING | ( | message | ) | google::LogMessage(__FILE__, __LINE__, google::GLOG_WARNING, message) |
Definition at line 318 of file base/logging.h.
| #define PCHECK | ( | condition | ) |
Definition at line 774 of file base/logging.h.
| #define PLOG | ( | severity | ) | GOOGLE_PLOG(severity, 0).stream() |
Definition at line 761 of file base/logging.h.
| #define PLOG_EVERY_N | ( | severity, | |
| n | |||
| ) | SOME_KIND_OF_PLOG_EVERY_N(severity, (n), google::LogMessage::SendToLog) |
Definition at line 846 of file base/logging.h.
| #define PLOG_IF | ( | severity, | |
| condition | |||
| ) |
Definition at line 767 of file base/logging.h.
| #define QCHECK CHECK |
Definition at line 38 of file base/logging.h.
| #define SOME_KIND_OF_LOG_EVERY_N | ( | severity, | |
| n, | |||
| what_to_do | |||
| ) |
Definition at line 798 of file base/logging.h.
| #define SOME_KIND_OF_LOG_FIRST_N | ( | severity, | |
| n, | |||
| what_to_do | |||
| ) |
Definition at line 825 of file base/logging.h.
| #define SOME_KIND_OF_LOG_IF_EVERY_N | ( | severity, | |
| condition, | |||
| n, | |||
| what_to_do | |||
| ) |
Definition at line 807 of file base/logging.h.
| #define SOME_KIND_OF_PLOG_EVERY_N | ( | severity, | |
| n, | |||
| what_to_do | |||
| ) |
Definition at line 816 of file base/logging.h.
| #define SYSLOG | ( | severity | ) | SYSLOG_##severity(0).stream() |
Definition at line 421 of file base/logging.h.
Definition at line 488 of file base/logging.h.
| #define SYSLOG_DFATAL | ( | counter | ) |
Definition at line 388 of file base/logging.h.
| #define SYSLOG_ERROR | ( | counter | ) |
Definition at line 376 of file base/logging.h.
| #define SYSLOG_EVERY_N | ( | severity, | |
| n | |||
| ) |
Definition at line 842 of file base/logging.h.
| #define SYSLOG_FATAL | ( | counter | ) |
Definition at line 382 of file base/logging.h.
| #define SYSLOG_IF | ( | severity, | |
| condition | |||
| ) |
Definition at line 482 of file base/logging.h.
| #define SYSLOG_INFO | ( | counter | ) |
Definition at line 364 of file base/logging.h.
| #define SYSLOG_WARNING | ( | counter | ) |
Definition at line 370 of file base/logging.h.
| #define VLOG | ( | verboselevel | ) | LOG_IF(INFO, VLOG_IS_ON(verboselevel)) |
Definition at line 978 of file base/logging.h.
| #define VLOG_EVERY_N | ( | verboselevel, | |
| n | |||
| ) | LOG_IF_EVERY_N(INFO, VLOG_IS_ON(verboselevel), n) |
Definition at line 983 of file base/logging.h.
| #define VLOG_IF | ( | verboselevel, | |
| condition | |||
| ) | LOG_IF(INFO, (condition) && VLOG_IS_ON(verboselevel)) |
Definition at line 980 of file base/logging.h.
| #define VLOG_IF_EVERY_N | ( | verboselevel, | |
| condition, | |||
| n | |||
| ) | LOG_IF_EVERY_N(INFO, (condition) && VLOG_IS_ON(verboselevel), n) |
Definition at line 986 of file base/logging.h.
| ABSL_DECLARE_FLAG | ( | bool | , |
| alsologtostderr | |||
| ) |
| ABSL_DECLARE_FLAG | ( | bool | , |
| colorlogtostderr | |||
| ) |
| ABSL_DECLARE_FLAG | ( | bool | , |
| log_prefix | |||
| ) |
| ABSL_DECLARE_FLAG | ( | bool | , |
| logtostderr | |||
| ) |
| ABSL_DECLARE_FLAG | ( | bool | , |
| stop_logging_if_full_disk | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| logbuflevel | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| logbufsecs | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| logfile_mode | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| max_log_size | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| minloglevel | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| stderrthreshold | |||
| ) |
| ABSL_DECLARE_FLAG | ( | int | , |
| v | |||
| ) |
| ABSL_DECLARE_FLAG | ( | std::string | , |
| log_dir | |||
| ) |
| ABSL_DECLARE_FLAG | ( | std::string | , |
| log_link | |||
| ) |
| void FixFlagsAndEnvironmentForSwig | ( | ) |
Definition at line 61 of file base/logging.cc.
|
inline |
Definition at line 535 of file base/logging.h.