| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | SourceManager.cpp | 72 m_debugger_wp(debugger_sp) {} in SourceManager() 83 DebuggerSP debugger_sp(m_debugger_wp.lock()); in GetFile() local 86 if (!debugger_sp || !debugger_sp->GetUseSourceCache()) { in GetFile() 166 if (!debugger_sp) in should_highlight_source() 171 if (!debugger_sp->GetUseColor()) in should_highlight_source() 174 return debugger_sp->GetHighlightSource(); in should_highlight_source() 180 if (!debugger_sp) in should_show_stop_column_with_ansi() 185 if (!debugger_sp->GetUseColor()) in should_show_stop_column_with_ansi() 199 if (!debugger_sp) in should_show_stop_column_with_caret() 214 return debugger_sp && debugger_sp->GetUseColor(); in should_show_stop_line_with_ansi() [all …]
|
| H A D | Debugger.cpp | 741 return debugger_sp; in CreateInstance() 752 if (!debugger_sp) in Destroy() 767 debugger_sp->Clear(); in Destroy() 788 if (!debugger_sp) in FindDebuggerWithInstanceName() 792 return debugger_sp; in FindDebuggerWithInstanceName() 1342 DebuggerSP debugger_sp; in GetDebuggerAtIndex() local 1350 return debugger_sp; in GetDebuggerAtIndex() 1354 DebuggerSP debugger_sp; in FindDebuggerWithID() local 1366 return debugger_sp; in FindDebuggerWithID() 1457 if (debugger_sp) in ReportProgress() [all …]
|
| H A D | DebuggerEvents.cpp | 139 DebuggerSP debugger_sp(m_debugger_wp.lock()); in DoOnRemoval() local 140 if (!debugger_sp) in DoOnRemoval() 143 for (TargetSP target_sp : debugger_sp->GetTargetList().Targets()) { in DoOnRemoval()
|
| H A D | Module.cpp | 982 for (auto debugger_sp : requestors) { in DebuggersOwningModuleRequestingInterruption() local 983 if (!debugger_sp->InterruptRequested()) in DebuggersOwningModuleRequestingInterruption() 985 if (debugger_sp->GetTargetList() in DebuggersOwningModuleRequestingInterruption() 987 interruptors.push_back(debugger_sp); in DebuggersOwningModuleRequestingInterruption() 999 for (auto debugger_sp : interruptors) { in GetSymbolFile() local 1000 REPORT_INTERRUPTION(*(debugger_sp.get()), in GetSymbolFile()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBSourceManager.cpp | 25 SourceManagerImpl(const lldb::DebuggerSP &debugger_sp) in SourceManagerImpl() argument 26 : m_debugger_wp(debugger_sp) {} in SourceManagerImpl() 52 lldb::DebuggerSP debugger_sp(m_debugger_wp.lock()); in DisplaySourceLinesWithLineNumbers() local 53 if (debugger_sp) { in DisplaySourceLinesWithLineNumbers() 54 return debugger_sp->GetSourceManager() in DisplaySourceLinesWithLineNumbers()
|
| H A D | SBDebugger.cpp | 93 : m_opaque_sp(debugger_sp) { in SBDebugger() 94 LLDB_INSTRUMENT_VA(this, debugger_sp); in SBDebugger() 1111 if (debugger_sp) { in GetSelectedPlatform() 1127 if (debugger_sp) { in SetSelectedPlatform() 1306 m_opaque_sp = debugger_sp; in reset() 1324 if (debugger_sp) in FindDebuggerWithID() 1325 sb_debugger.reset(debugger_sp); in FindDebuggerWithID() 1343 DebuggerSP debugger_sp( in SetInternalVariable() local 1346 if (debugger_sp) { in SetInternalVariable() 1365 DebuggerSP debugger_sp( in GetInternalVariableValue() local [all …]
|
| H A D | SBTypeCategory.cpp | 359 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSummary() local 360 if (debugger_sp) { in AddTypeSummary() 362 debugger_sp->GetScriptInterpreter(); in AddTypeSummary() 451 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSynthetic() local 452 if (debugger_sp) { in AddTypeSynthetic() 454 debugger_sp->GetScriptInterpreter(); in AddTypeSynthetic()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 82 if (!debugger_sp) in GetGlobalEnableOptions() 87 DebuggerWP debugger_wp(debugger_sp); in GetGlobalEnableOptions() 99 DebuggerWP debugger_wp(debugger_sp); in SetGlobalEnableOptions() 779 DebuggerSP debugger_sp = in DoExecute() local 887 DebuggerSP debugger_sp = in DoExecute() local 1415 if (!options_sp && debugger_sp) { in FilterLaunchInfo() 1654 DebuggerSP debugger_sp = in DumpHeader() local 1656 if (!debugger_sp) { in DumpHeader() 1783 DebuggerSP debugger_sp = in EnableNow() local 1785 if (!debugger_sp) { in EnableNow() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectQuit.cpp | 40 DebuggerSP debugger_sp(Debugger::GetDebuggerAtIndex(debugger_idx)); in ShouldAskForConfirmation() local 41 if (!debugger_sp) in ShouldAskForConfirmation() 43 const TargetList &target_list(debugger_sp->GetTargetList()); in ShouldAskForConfirmation()
|
| H A D | CommandObjectPlatform.cpp | 1451 DebuggerSP debugger_sp = in SetOptionValue() local 1455 debugger_sp ? debugger_sp->GetPlatformList().GetSelectedPlatform() in SetOptionValue()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | SourceManager.h | 41 File(const FileSpec &file_spec, lldb::DebuggerSP debugger_sp); 136 SourceManager(const lldb::DebuggerSP &debugger_sp);
|
| H A D | Debugger.h | 115 static void Destroy(lldb::DebuggerSP &debugger_sp);
|
| /freebsd-14.2/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-swigsafecast.swig | 62 PythonObject SWIGBridge::ToSWIGWrapper(lldb::DebuggerSP debugger_sp) { 63 return ToSWIGHelper(new lldb::SBDebugger(std::move(debugger_sp)),
|
| H A D | python-wrapper.swig | 215 lldb::DebuggerSP debugger_sp) { 229 return pfunc(SWIGBridge::ToSWIGWrapper(std::move(debugger_sp)), dict);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1867 DebuggerSP debugger_sp(m_debugger.shared_from_this()); in CreateScriptCommandObject() local 1872 if (!debugger_sp.get()) in CreateScriptCommandObject() 1878 class_name, m_dictionary_name.c_str(), debugger_sp); in CreateScriptCommandObject() 2666 : m_debugger_sp(debugger_sp), m_synch_wanted(synchro), in SynchronicityHandler() 2667 m_old_asynch(debugger_sp->GetAsyncExecution()) { in SynchronicityHandler() 2689 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in RunScriptBasedCommand() local 2692 if (!debugger_sp.get()) { in RunScriptBasedCommand() 2707 SynchronicityHandler synch_handler(debugger_sp, synchronicity); in RunScriptBasedCommand() 2734 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in RunScriptBasedCommand() local 2737 if (!debugger_sp.get()) { in RunScriptBasedCommand() [all …]
|
| H A D | SWIGPythonBridge.h | 92 static PythonObject ToSWIGWrapper(lldb::DebuggerSP debugger_sp); 147 lldb::DebuggerSP debugger_sp);
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-private-types.h | 30 const lldb::DebuggerSP &debugger_sp, const FileSpec &spec, Status &error);
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBDebugger.h | 481 SBDebugger(const lldb::DebuggerSP &debugger_sp); 496 void reset(const lldb::DebuggerSP &debugger_sp);
|