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) { Printf("%s", cstr); } in PutCString()
135 void Log::PutString(llvm::StringRef str) { PutCString(str.str().c_str()); } in PutString()
138 void Log::Printf(const char *format, ...) { in Printf()
148 void Log::VAPrintf(const char *format, va_list args) { in VAPrintf()
162 void Log::Error(const char *format, ...) { in Error()
169 void Log::VAError(const char *format, va_list args) { in VAError()
177 void Log::Verbose(const char *format, ...) { in Verbose()
188 void Log::Warning(const char *format, ...) { in Warning()
198 void Log::Register(llvm::StringRef name, Channel &channel) { in Register()
204 void Log::Unregister(llvm::StringRef name) { in Unregister()
211 bool Log::EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp, in EnableLogChannel()
227 bool Log::DisableLogChannel(llvm::StringRef channel, in DisableLogChannel()
242 bool Log::DumpLogChannel(llvm::StringRef channel, in DumpLogChannel()
258 bool Log::ListChannelCategories(llvm::StringRef channel, in ListChannelCategories()
269 void Log::DisableAllLogChannels() { in DisableAllLogChannels()
274 void Log::ForEachChannelCategory( in ForEachChannelCategory()
284 std::vector<llvm::StringRef> Log::ListChannels() { in ListChannels()
291 void Log::ListAllLogChannels(llvm::raw_ostream &stream) { in ListAllLogChannels()
301 bool Log::GetVerbose() const { in GetVerbose()
305 void Log::WriteHeader(llvm::raw_ostream &OS, llvm::StringRef file, in WriteHeader()
347 void Log::WriteMessage(const std::string &message) { in WriteMessage()
356 void Log::Format(llvm::StringRef file, llvm::StringRef function, in Format()