Home
last modified time | relevance | path

Searched refs:LogHandler (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h48 class LogHandler {
50 virtual ~LogHandler() = default;
54 static bool classof(const LogHandler *obj) { return obj->isA(&ID); } in classof()
60 class StreamLogHandler : public LogHandler {
69 static bool classof(const LogHandler *obj) { return obj->isA(&ID); } in classof()
77 class CallbackLogHandler : public LogHandler {
84 static bool classof(const LogHandler *obj) { return obj->isA(&ID); } in classof()
92 class RotatingLogHandler : public LogHandler {
100 static bool classof(const LogHandler *obj) { return obj->isA(&ID); } in classof()
116 class TeeLogHandler : public LogHandler {
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DLog.cpp38 char LogHandler::ID;
95 void Log::Enable(const std::shared_ptr<LogHandler> &handler_sp, in Enable()
224 bool Log::EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp, in EnableLogChannel()
443 TeeLogHandler::TeeLogHandler(std::shared_ptr<LogHandler> first_log_handler, in TeeLogHandler()
444 std::shared_ptr<LogHandler> second_log_handler) in TeeLogHandler()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DHost.h261 class SystemLogHandler : public LogHandler {
267 static bool classof(const LogHandler *obj) { return obj->isA(&ID); } in classof()
/freebsd/contrib/llvm-project/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp24 class TestLogHandler : public LogHandler {
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h63 class LogHandler; variable
725 llvm::StringMap<std::weak_ptr<LogHandler>> m_stream_handlers;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1617 static std::shared_ptr<LogHandler>
1639 std::shared_ptr<LogHandler> log_handler_sp; in EnableLog()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DOptions.td457 …EnumArg<"LogHandler">, Desc<"Specify a log handler which determines where log messages are written…