Home
last modified time | relevance | path

Searched refs:debugger_sp (Results 1 – 18 of 18) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp72 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 DDebugger.cpp741 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 DDebuggerEvents.cpp139 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 DModule.cpp982 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 DSBSourceManager.cpp25 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 DSBDebugger.cpp93 : 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 DSBTypeCategory.cpp359 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 DStructuredDataDarwinLog.cpp82 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 DCommandObjectQuit.cpp40 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 DCommandObjectPlatform.cpp1451 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 DSourceManager.h41 File(const FileSpec &file_spec, lldb::DebuggerSP debugger_sp);
136 SourceManager(const lldb::DebuggerSP &debugger_sp);
H A DDebugger.h115 static void Destroy(lldb::DebuggerSP &debugger_sp);
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig62 PythonObject SWIGBridge::ToSWIGWrapper(lldb::DebuggerSP debugger_sp) {
63 return ToSWIGHelper(new lldb::SBDebugger(std::move(debugger_sp)),
H A Dpython-wrapper.swig215 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 DScriptInterpreterPython.cpp1867 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 DSWIGPythonBridge.h92 static PythonObject ToSWIGWrapper(lldb::DebuggerSP debugger_sp);
147 lldb::DebuggerSP debugger_sp);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h30 const lldb::DebuggerSP &debugger_sp, const FileSpec &spec, Status &error);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDebugger.h481 SBDebugger(const lldb::DebuggerSP &debugger_sp);
496 void reset(const lldb::DebuggerSP &debugger_sp);