Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A DSBDebugger.i137 Create(bool source_init_files, lldb::LogOutputCallback log_callback, void *baton);
393 SetLoggingCallback (lldb::LogOutputCallback log_callback, void *baton);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDebugger.h96 lldb::LogOutputCallback log_callback,
262 void SetLoggingCallback(lldb::LogOutputCallback log_callback, void *baton);
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp593 DebuggerSP Debugger::CreateInstance(lldb::LogOutputCallback log_callback, in CreateInstance() argument
595 DebuggerSP debugger_sp(new Debugger(log_callback, baton)); in CreateInstance()
681 Debugger::Debugger(lldb::LogOutputCallback log_callback, void *baton) in Debugger() argument
701 if (log_callback) in Debugger()
703 std::make_shared<StreamCallback>(log_callback, baton); in Debugger()
1147 void Debugger::SetLoggingCallback(lldb::LogOutputCallback log_callback, in SetLoggingCallback() argument
1153 std::make_shared<StreamCallback>(log_callback, baton); in SetLoggingCallback()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h123 CreateInstance(lldb::LogOutputCallback log_callback = nullptr,
271 void SetLoggingCallback(lldb::LogOutputCallback log_callback, void *baton);
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-typemaps.swig360 %typemap(in) (lldb::LogOutputCallback log_callback, void *baton) {
377 %typemap(typecheck) (lldb::LogOutputCallback log_callback, void *baton) {
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp1679 void SBDebugger::SetLoggingCallback(lldb::LogOutputCallback log_callback, in SetLoggingCallback() argument
1682 (lldb::LogOutputCallback, void *), log_callback, baton); in SetLoggingCallback()
1685 return m_opaque_sp->SetLoggingCallback(log_callback, baton); in SetLoggingCallback()