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 uint32_t Log::GetFlags(llvm::raw_ostream &stream, const ChannelMap::value_type &entry, in GetFlags()
77 [&](const Log::Category &c) { in GetFlags()
93 void Log::Enable(const std::shared_ptr<LogHandler> &handler_sp, in Enable()
105 void Log::Disable(uint32_t flags) { in Disable()
115 bool Log::Dump(llvm::raw_ostream &output_stream) { in Dump()
125 const Flags Log::GetOptions() const { in GetOptions()
129 const Flags Log::GetMask() const { in GetMask()
133 void Log::PutCString(const char *cstr) { Printf("%s", cstr); } in PutCString()
134 void Log::PutString(llvm::StringRef str) { PutCString(str.str().c_str()); } in PutString()
137 void Log::Printf(const char *format, ...) { in Printf()
147 void Log::VAPrintf(const char *format, va_list args) { in VAPrintf()
161 void Log::Error(const char *format, ...) { in Error()
168 void Log::VAError(const char *format, va_list args) { in VAError()
176 void Log::Verbose(const char *format, ...) { in Verbose()
187 void Log::Warning(const char *format, ...) { in Warning()
197 void Log::Register(llvm::StringRef name, Channel &channel) { in Register()
203 void Log::Unregister(llvm::StringRef name) { in Unregister()
210 bool Log::EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp, in EnableLogChannel()
226 bool Log::DisableLogChannel(llvm::StringRef channel, in DisableLogChannel()
241 bool Log::DumpLogChannel(llvm::StringRef channel, in DumpLogChannel()
257 bool Log::ListChannelCategories(llvm::StringRef channel, in ListChannelCategories()
268 void Log::DisableAllLogChannels() { in DisableAllLogChannels()
273 void Log::ForEachChannelCategory( in ForEachChannelCategory()
283 std::vector<llvm::StringRef> Log::ListChannels() { in ListChannels()
290 void Log::ListAllLogChannels(llvm::raw_ostream &stream) { in ListAllLogChannels()
300 bool Log::GetVerbose() const { in GetVerbose()
304 void Log::WriteHeader(llvm::raw_ostream &OS, llvm::StringRef file, in WriteHeader()
346 void Log::WriteMessage(const std::string &message) { in WriteMessage()
355 void Log::Format(llvm::StringRef file, llvm::StringRef function, in Format()