Lines Matching refs:LogEntry
55 std::string LogEntry::toString() const { in toString()
72 LogEntry& LogEntry::message(const std::string& message) { in message()
77 LogEntry& LogEntry::function(const std::string& function_name) { in function()
82 LogEntry& LogEntry::prettyFunction(const std::string& pretty_function) { in prettyFunction()
116 LogEntry& LogEntry::arg(const std::string& val) { in arg()
122 LogEntry& LogEntry::arg<>(bool val) { in arg()
127 LogEntry& LogEntry::arg(const std::vector<int32_t>& val) { in arg()
132 LogEntry& LogEntry::arg(const std::vector<uint8_t>& val) { in arg()
137 LogEntry& LogEntry::arg(const std::vector<std::string>& val) { in arg()
142 LogEntry& LogEntry::returns(const std::string& rval) { in returns()
147 LogEntry& LogEntry::returns(bool rval) { in returns()
152 LogEntry& LogEntry::returns(const Status& status) { in returns()
157 LogEntry& LogEntry::withUid(uid_t uid) { in withUid()
162 LogEntry& LogEntry::withAutomaticDuration() { in withAutomaticDuration()
173 LogEntry& LogEntry::withDuration(const std::string& duration) { in withDuration()
180 info(LogEntry().function(__FUNCTION__)); in ~Log()