Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DSourceManager.cpp74 DebuggerSP debugger_sp(m_debugger_wp.lock()); in GetFile() local
78 else if (debugger_sp) in GetFile()
101 if (debugger_sp) in GetFile()
108 if (!debugger_sp) in should_highlight_source()
113 if (!debugger_sp->GetUseColor()) in should_highlight_source()
116 return debugger_sp->GetHighlightSource(); in should_highlight_source()
122 if (!debugger_sp) in should_show_stop_column_with_ansi()
127 if (!debugger_sp->GetUseColor()) in should_show_stop_column_with_ansi()
141 if (!debugger_sp) in should_show_stop_column_with_caret()
374 m_debugger_wp(debugger_sp) { in File()
[all …]
H A DDebugger.cpp693 return debugger_sp; in CreateInstance()
697 if (!debugger_sp) in Destroy()
700 debugger_sp->Clear(); in Destroy()
716 DebuggerSP debugger_sp; in FindDebuggerWithInstanceName() local
722 debugger_sp = *pos; in FindDebuggerWithInstanceName()
727 return debugger_sp; in FindDebuggerWithInstanceName()
1166 DebuggerSP debugger_sp; in GetDebuggerAtIndex() local
1174 return debugger_sp; in GetDebuggerAtIndex()
1178 DebuggerSP debugger_sp; in FindDebuggerWithID() local
1185 debugger_sp = *pos; in FindDebuggerWithID()
[all …]
/freebsd-12.1/contrib/llvm/tools/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.cpp69 lldb::SBDebugger debugger_sb(debugger_sp); in LoadPlugin()
114 : m_opaque_sp(debugger_sp) {} in SBDebugger()
810 DebuggerSP debugger_sp(m_opaque_sp); in GetSelectedPlatform() local
811 if (debugger_sp) { in GetSelectedPlatform()
825 DebuggerSP debugger_sp(m_opaque_sp); in SetSelectedPlatform() local
826 if (debugger_sp) { in SetSelectedPlatform()
967 m_opaque_sp = debugger_sp; in reset()
983 if (debugger_sp) in FindDebuggerWithID()
984 sb_debugger.reset(debugger_sp); in FindDebuggerWithID()
998 if (debugger_sp) { in SetInternalVariable()
[all …]
H A DSBTypeCategory.cpp356 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSummary() local
357 if (debugger_sp) { in AddTypeSummary()
359 debugger_sp->GetCommandInterpreter().GetScriptInterpreter(); in AddTypeSummary()
468 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSynthetic() local
469 if (debugger_sp) { in AddTypeSynthetic()
471 debugger_sp->GetCommandInterpreter().GetScriptInterpreter(); in AddTypeSynthetic()
H A DSystemInitializerFull.cpp193 const lldb::DebuggerSP debugger_sp);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp83 if (!debugger_sp) in GetGlobalEnableOptions()
88 DebuggerWP debugger_wp(debugger_sp); in GetGlobalEnableOptions()
100 DebuggerWP debugger_wp(debugger_sp); in SetGlobalEnableOptions()
813 DebuggerSP debugger_sp = in DoExecute() local
930 DebuggerSP debugger_sp = in DoExecute() local
1499 if (!options_sp && debugger_sp) { in FilterLaunchInfo()
1506 SetGlobalEnableOptions(debugger_sp, options_sp); in FilterLaunchInfo()
1744 DebuggerSP debugger_sp = in DumpHeader() local
1746 if (!debugger_sp) { in DumpHeader()
1875 DebuggerSP debugger_sp = in EnableNow() local
[all …]
/freebsd-12.1/contrib/llvm/tools/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.cpp1322 DebuggerSP debugger_sp = in SetOptionValue() local
1326 debugger_sp ? debugger_sp->GetPlatformList().GetSelectedPlatform() in SetOptionValue()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DSourceManager.h50 File(const FileSpec &file_spec, lldb::DebuggerSP debugger_sp);
132 SourceManager(const lldb::DebuggerSP &debugger_sp);
H A DDebugger.h104 static void Destroy(lldb::DebuggerSP &debugger_sp);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBDebugger.h42 SBDebugger(const lldb::DebuggerSP &debugger_sp);
286 void reset(const lldb::DebuggerSP &debugger_sp);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2098 DebuggerSP debugger_sp( in CreateScriptCommandObject() local
2104 if (!debugger_sp.get()) in CreateScriptCommandObject()
2868 debugger_sp)) { in LoadScriptingModule()
2916 lldb::DebuggerSP debugger_sp, ScriptedCommandSynchronicity synchro) in SynchronicityHandler() argument
2917 : m_debugger_sp(debugger_sp), m_synch_wanted(synchro), in SynchronicityHandler()
2918 m_old_asynch(debugger_sp->GetAsyncExecution()) { in SynchronicityHandler()
2948 if (!debugger_sp.get()) { in RunScriptBasedCommand()
2963 SynchronicityHandler synch_handler(debugger_sp, synchronicity); in RunScriptBasedCommand()
2967 debugger_sp, args_str.c_str(), cmd_retobj, in RunScriptBasedCommand()
2997 if (!debugger_sp.get()) { in RunScriptBasedCommand()
[all …]
H A DScriptInterpreterPython.h70 const lldb::DebuggerSP debugger_sp);
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-types.h30 const lldb::DebuggerSP &debugger_sp, const FileSpec &spec, Status &error);