Lines Matching defs:message

23 // Optional message capabilities
26 // before the application exits. However, running this UI creates a message
36 // will run this application with the message as the command line, and will
90 // which append the last system error to the message in string form (taken from
96 // Very important: logging a message at the FATAL severity level causes
97 // the program to terminate (after the message is logged).
271 // |message| must be non-null if and only if the check failed.
272 CheckOpResult(std::string* message) : message_(message) {}
275 // Returns the message.
276 std::string* message() { return message_; }
401 // message so that it is available in crash reports. The stringified
455 ::logging::LogMessage(__FILE__, __LINE__, true_if_passed.message()) \
498 // Build the error message string. This is separate from the "Impl"
683 true_if_passed.message()) \
706 // LOG_DCHECK message including the two values when the result is not
710 // You may append to the error message like so:
738 // This class more or less represents a particular log message. You
741 // full message gets streamed to the appropriate destination.
776 size_t message_start_; // Offset of the start of the message (past prefix
826 // Appends a formatted system message of the GetLastError() type.
834 // Appends the error message before destructing the encapsulated class.
847 // Appends a formatted system message of the errno type
855 // Appends the error message before destructing the encapsulated class.
876 void RawLog(int level, const char* message);
878 #define RAW_LOG(level, message) \
879 ::logging::RawLog(::logging::LOG_##level, message)
904 // of the current function in the NOTIMPLEMENTED message.