Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
181 EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp,
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DHost.h260 class SystemLogHandler : public LogHandler {
266 static bool classof(const LogHandler *obj) { return obj->isA(&ID); } in classof()
/openbsd-src/gnu/llvm/lldb/tools/lldb-server/
H A DLLDBServerUtilities.cpp24 class TestLogHandler : public LogHandler {
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DLog.cpp38 char LogHandler::ID;
94 void Log::Enable(const std::shared_ptr<LogHandler> &handler_sp, in Enable()
211 bool Log::EnableLogChannel(const std::shared_ptr<LogHandler> &log_handler_sp, in EnableLogChannel()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DDebugger.h60 class LogHandler; variable
579 llvm::StringMap<std::weak_ptr<LogHandler>> m_stream_handlers;
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DDebugger.cpp1429 static std::shared_ptr<LogHandler>
1451 std::shared_ptr<LogHandler> log_handler_sp; in EnableLog()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DOptions.td445 …EnumArg<"LogHandler">, Desc<"Specify a log handler which determines where log messages are written…