Home
last modified time | relevance | path

Searched refs:log_callback (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBDebugger.i156 Create(bool source_init_files, lldb::LogOutputCallback log_callback, void *baton);
415 SetLoggingCallback (lldb::LogOutputCallback log_callback, void *baton);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBDebugger.h105 lldb::LogOutputCallback log_callback,
275 void SetLoggingCallback(lldb::LogOutputCallback log_callback, void *baton);
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DDebugger.h96 CreateInstance(lldb::LogOutputCallback log_callback = nullptr,
251 void SetLoggingCallback(lldb::LogOutputCallback log_callback, void *baton);
/llvm-project-15.0.7/lldb/source/Core/
H A DDebugger.cpp651 DebuggerSP Debugger::CreateInstance(lldb::LogOutputCallback log_callback, in CreateInstance() argument
653 DebuggerSP debugger_sp(new Debugger(log_callback, baton)); in CreateInstance()
739 Debugger::Debugger(lldb::LogOutputCallback log_callback, void *baton) in Debugger() argument
759 if (log_callback) in Debugger()
761 std::make_shared<CallbackLogHandler>(log_callback, baton); in Debugger()
1289 void Debugger::SetLoggingCallback(lldb::LogOutputCallback log_callback, in SetLoggingCallback() argument
1295 std::make_shared<CallbackLogHandler>(log_callback, baton); in SetLoggingCallback()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A Ddebugserver.cpp1331 auto log_callback = OsLogger::GetLogFunction(); in main() local
1332 if (log_callback) { in main()
1333 DNBLogSetLogCallback(log_callback, nullptr); in main()
H A DRNBRemote.cpp2133 auto log_callback = OsLogger::GetLogFunction(); in set_logging() local
2134 if (log_callback) in set_logging()
2135 DNBLogSetLogCallback(log_callback, nullptr); in set_logging()
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-typemaps.swig352 %typemap(in) (lldb::LogOutputCallback log_callback, void *baton) {
370 %typemap(typecheck) (lldb::LogOutputCallback log_callback, void *baton) {
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp1630 void SBDebugger::SetLoggingCallback(lldb::LogOutputCallback log_callback, in SetLoggingCallback() argument
1632 LLDB_INSTRUMENT_VA(this, log_callback, baton); in SetLoggingCallback()
1635 return m_opaque_sp->SetLoggingCallback(log_callback, baton); in SetLoggingCallback()
/llvm-project-15.0.7/lldb/bindings/lua/
H A Dlua-typemaps.swig158 %typemap(in) (lldb::LogOutputCallback log_callback, void *baton) {