Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp61 m_debugger_wp(debugger_sp) {} in SourceManager()
72 if (debugger_sp && debugger_sp->GetUseSourceCache()) in GetFile()
95 if (debugger_sp && debugger_sp->GetUseSourceCache()) in GetFile()
102 if (!debugger_sp) in should_highlight_source()
107 if (!debugger_sp->GetUseColor()) in should_highlight_source()
110 return debugger_sp->GetHighlightSource(); in should_highlight_source()
116 if (!debugger_sp) in should_show_stop_column_with_ansi()
121 if (!debugger_sp->GetUseColor()) in should_show_stop_column_with_ansi()
135 if (!debugger_sp) in should_show_stop_column_with_caret()
150 return debugger_sp && debugger_sp->GetUseColor(); in should_show_stop_line_with_ansi()
[all …]
H A DDebugger.cpp601 return debugger_sp; in CreateInstance()
605 if (!debugger_sp) in Destroy()
619 debugger_sp->Clear(); in Destroy()
634 DebuggerSP debugger_sp; in FindDebuggerWithInstanceName() local
640 debugger_sp = *pos; in FindDebuggerWithInstanceName()
645 return debugger_sp; in FindDebuggerWithInstanceName()
1078 DebuggerSP debugger_sp; in GetDebuggerAtIndex() local
1086 return debugger_sp; in GetDebuggerAtIndex()
1090 DebuggerSP debugger_sp; in FindDebuggerWithID() local
1102 return debugger_sp; in FindDebuggerWithID()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp79 if (!debugger_sp) in GetGlobalEnableOptions()
84 DebuggerWP debugger_wp(debugger_sp); in GetGlobalEnableOptions()
96 DebuggerWP debugger_wp(debugger_sp); in SetGlobalEnableOptions()
781 DebuggerSP debugger_sp = in DoExecute() local
889 DebuggerSP debugger_sp = in DoExecute() local
1442 if (!options_sp && debugger_sp) { in FilterLaunchInfo()
1449 SetGlobalEnableOptions(debugger_sp, options_sp); in FilterLaunchInfo()
1684 DebuggerSP debugger_sp = in DumpHeader() local
1686 if (!debugger_sp) { in DumpHeader()
1813 DebuggerSP debugger_sp = in EnableNow() local
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBSourceManager.cpp26 SourceManagerImpl(const lldb::DebuggerSP &debugger_sp) in SourceManagerImpl() argument
27 : m_debugger_wp(debugger_sp), m_target_wp() {} in SourceManagerImpl()
54 lldb::DebuggerSP debugger_sp(m_debugger_wp.lock()); in DisplaySourceLinesWithLineNumbers() local
55 if (debugger_sp) { in DisplaySourceLinesWithLineNumbers()
56 return debugger_sp->GetSourceManager() in DisplaySourceLinesWithLineNumbers()
H A DSBDebugger.cpp72 lldb::SBDebugger debugger_sb(debugger_sp); in LoadPlugin()
133 : m_opaque_sp(debugger_sp) { in SBDebugger()
1062 DebuggerSP debugger_sp(m_opaque_sp); in GetSelectedPlatform() local
1063 if (debugger_sp) { in GetSelectedPlatform()
1079 DebuggerSP debugger_sp(m_opaque_sp); in SetSelectedPlatform() local
1080 if (debugger_sp) { in SetSelectedPlatform()
1276 m_opaque_sp = debugger_sp; in reset()
1295 if (debugger_sp) in FindDebuggerWithID()
1296 sb_debugger.reset(debugger_sp); in FindDebuggerWithID()
1316 if (debugger_sp) { in SetInternalVariable()
[all …]
H A DSBTypeCategory.cpp422 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSummary() local
423 if (debugger_sp) { in AddTypeSummary()
425 debugger_sp->GetScriptInterpreter(); in AddTypeSummary()
542 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSynthetic() local
543 if (debugger_sp) { in AddTypeSynthetic()
545 debugger_sp->GetScriptInterpreter(); in AddTypeSynthetic()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp37 DebuggerSP debugger_sp(Debugger::GetDebuggerAtIndex(debugger_idx)); in ShouldAskForConfirmation() local
38 if (!debugger_sp) in ShouldAskForConfirmation()
40 const TargetList &target_list(debugger_sp->GetTargetList()); in ShouldAskForConfirmation()
H A DCommandObjectPlatform.cpp1241 DebuggerSP debugger_sp = in SetOptionValue() local
1245 debugger_sp ? debugger_sp->GetPlatformList().GetSelectedPlatform() in SetOptionValue()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DSourceManager.h39 File(const FileSpec &file_spec, lldb::DebuggerSP debugger_sp);
117 SourceManager(const lldb::DebuggerSP &debugger_sp);
H A DDebugger.h138 static void Destroy(lldb::DebuggerSP &debugger_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp116 const lldb::DebuggerSP debugger_sp);
2157 DebuggerSP debugger_sp(m_debugger.shared_from_this()); in CreateScriptCommandObject() local
2162 if (!debugger_sp.get()) in CreateScriptCommandObject()
2171 class_name, m_dictionary_name.c_str(), debugger_sp); in CreateScriptCommandObject()
2787 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in LoadScriptingModule() local
2973 : m_debugger_sp(debugger_sp), m_synch_wanted(synchro), in SynchronicityHandler()
2974 m_old_asynch(debugger_sp->GetAsyncExecution()) { in SynchronicityHandler()
2996 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in RunScriptBasedCommand() local
2999 if (!debugger_sp.get()) { in RunScriptBasedCommand()
3040 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in RunScriptBasedCommand() local
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h29 const lldb::DebuggerSP &debugger_sp, const FileSpec &spec, Status &error);
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDebugger.h42 SBDebugger(const lldb::DebuggerSP &debugger_sp);
387 void reset(const lldb::DebuggerSP &debugger_sp);
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig255 const lldb::DebuggerSP debugger_sp
268 lldb::SBDebugger debugger_sb(debugger_sp);