Lines Matching refs:Log

43 llvm::ManagedStatic<Log::ChannelMap> Log::g_channel_map;
45 void Log::ForEachCategory( in ForEachCategory()
46 const Log::ChannelMap::value_type &entry, in ForEachCategory()
54 void Log::ListCategories(llvm::raw_ostream &stream, in ListCategories()
63 Log::MaskType Log::GetFlags(llvm::raw_ostream &stream, in GetFlags()
67 Log::MaskType flags = 0; in GetFlags()
70 flags |= std::numeric_limits<Log::MaskType>::max(); in GetFlags()
78 [&](const Log::Category &c) { in GetFlags()
94 void Log::Enable(const std::shared_ptr<LogHandler> &handler_sp, in Enable()
95 uint32_t options, Log::MaskType flags) { in Enable()
106 void Log::Disable(Log::MaskType flags) { in Disable()
116 bool Log::Dump(llvm::raw_ostream &output_stream) { in Dump()
126 const Flags Log::GetOptions() const { in GetOptions()
130 Log::MaskType Log::GetMask() const { in GetMask()
134 void Log::PutCString(const char *cstr) { PutString(cstr); } in PutCString()
136 void Log::PutString(llvm::StringRef str) { in PutString()
145 void Log::Printf(const char *format, ...) { in Printf()
152 void Log::VAPrintf(const char *format, va_list args) { in VAPrintf()
158 void Log::Formatf(llvm::StringRef file, llvm::StringRef function, in Formatf()
166 void Log::VAFormatf(llvm::StringRef file, llvm::StringRef function, in VAFormatf()
174 void Log::Error(const char *format, ...) { in Error()
181 void Log::VAError(const char *format, va_list args) { in VAError()
189 void Log::Verbose(const char *format, ...) { in Verbose()
200 void Log::Warning(const char *format, ...) { in Warning()
210 void Log::Register(llvm::StringRef name, Channel &channel) { in Register()
216 void Log::Unregister(llvm::StringRef name) { in Unregister()
223 bool Log::EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp, in EnableLogChannel()
239 bool Log::DisableLogChannel(llvm::StringRef channel, in DisableLogChannel()
254 bool Log::DumpLogChannel(llvm::StringRef channel, in DumpLogChannel()
270 bool Log::ListChannelCategories(llvm::StringRef channel, in ListChannelCategories()
281 void Log::DisableAllLogChannels() { in DisableAllLogChannels()
286 void Log::ForEachChannelCategory( in ForEachChannelCategory()
296 std::vector<llvm::StringRef> Log::ListChannels() { in ListChannels()
303 void Log::ListAllLogChannels(llvm::raw_ostream &stream) { in ListAllLogChannels()
313 bool Log::GetVerbose() const { in GetVerbose()
317 void Log::WriteHeader(llvm::raw_ostream &OS, llvm::StringRef file, in WriteHeader()
361 void Log::WriteMessage(llvm::StringRef message) { in WriteMessage()
370 void Log::Format(llvm::StringRef file, llvm::StringRef function, in Format()