Home
last modified time | relevance | path

Searched refs:DebuggerSP (Results 1 – 17 of 17) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp59 SourceManager::SourceManager(const DebuggerSP &debugger_sp) in SourceManager()
70 DebuggerSP debugger_sp(m_debugger_wp.lock()); in GetFile()
101 static bool should_highlight_source(DebuggerSP debugger_sp) { in should_highlight_source()
113 static bool should_show_stop_column_with_ansi(DebuggerSP debugger_sp) { in should_show_stop_column_with_ansi()
132 static bool should_show_stop_column_with_caret(DebuggerSP debugger_sp) { in should_show_stop_column_with_caret()
149 static bool should_show_stop_line_with_ansi(DebuggerSP debugger_sp) { in should_show_stop_line_with_ansi()
383 lldb::DebuggerSP debugger_sp) in File()
394 : DebuggerSP()) { in File()
H A DDebugger.cpp90 typedef std::vector<DebuggerSP> DebuggerList;
593 DebuggerSP Debugger::CreateInstance(lldb::LogOutputCallback log_callback, in CreateInstance()
595 DebuggerSP debugger_sp(new Debugger(log_callback, baton)); in CreateInstance()
604 void Debugger::Destroy(DebuggerSP &debugger_sp) { in Destroy()
633 DebuggerSP Debugger::FindDebuggerWithInstanceName(ConstString instance_name) { in FindDebuggerWithInstanceName()
634 DebuggerSP debugger_sp; in FindDebuggerWithInstanceName()
1077 lldb::DebuggerSP Debugger::GetDebuggerAtIndex(size_t index) { in GetDebuggerAtIndex()
1078 DebuggerSP debugger_sp; in GetDebuggerAtIndex()
1089 DebuggerSP Debugger::FindDebuggerWithID(lldb::user_id_t id) { in FindDebuggerWithID()
1090 DebuggerSP debugger_sp; in FindDebuggerWithID()
[all …]
/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);
393 const lldb::DebuggerSP &get_sp() const;
395 lldb::DebuggerSP m_opaque_sp;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h122 static lldb::DebuggerSP
138 static void Destroy(lldb::DebuggerSP &debugger_sp);
140 static lldb::DebuggerSP FindDebuggerWithID(lldb::user_id_t id);
142 static lldb::DebuggerSP
147 static lldb::DebuggerSP GetDebuggerAtIndex(size_t index);
H A DSourceManager.h39 File(const FileSpec &file_spec, lldb::DebuggerSP debugger_sp);
117 SourceManager(const lldb::DebuggerSP &debugger_sp);
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBSourceManager.cpp26 SourceManagerImpl(const lldb::DebuggerSP &debugger_sp) in SourceManagerImpl()
54 lldb::DebuggerSP debugger_sp(m_debugger_wp.lock()); in DisplaySourceLinesWithLineNumbers()
H A DSBDebugger.cpp64 static llvm::sys::DynamicLibrary LoadPlugin(const lldb::DebuggerSP &debugger_sp, in LoadPlugin()
132 SBDebugger::SBDebugger(const lldb::DebuggerSP &debugger_sp) in SBDebugger()
134 LLDB_RECORD_CONSTRUCTOR(SBDebugger, (const lldb::DebuggerSP &), debugger_sp); in SBDebugger()
1062 DebuggerSP debugger_sp(m_opaque_sp); in GetSelectedPlatform()
1079 DebuggerSP debugger_sp(m_opaque_sp); in SetSelectedPlatform()
1275 void SBDebugger::reset(const DebuggerSP &debugger_sp) { in reset()
1286 const lldb::DebuggerSP &SBDebugger::get_sp() const { return m_opaque_sp; } in get_sp()
1294 DebuggerSP debugger_sp = Debugger::FindDebuggerWithID(id); in FindDebuggerWithID()
1313 DebuggerSP debugger_sp(Debugger::FindDebuggerWithInstanceName( in SetInternalVariable()
1337 DebuggerSP debugger_sp(Debugger::FindDebuggerWithInstanceName( in GetInternalVariableValue()
[all …]
H A DSBTypeCategory.cpp422 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSummary()
542 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSynthetic()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp78 EnableOptionsSP GetGlobalEnableOptions(const DebuggerSP &debugger_sp) { in GetGlobalEnableOptions()
92 void SetGlobalEnableOptions(const DebuggerSP &debugger_sp, in SetGlobalEnableOptions()
781 DebuggerSP debugger_sp = in DoExecute()
889 DebuggerSP debugger_sp = in DoExecute()
1119 DebuggerSP debugger_sp = process.GetTarget().GetDebugger().shared_from_this(); in HandleArrivalOfStructuredData()
1440 DebuggerSP debugger_sp = target->GetDebugger().shared_from_this(); in FilterLaunchInfo()
1684 DebuggerSP debugger_sp = in DumpHeader()
1813 DebuggerSP debugger_sp = in EnableNow()
/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);
H A Dlldb-forward.h309 typedef std::shared_ptr<lldb_private::Debugger> DebuggerSP; typedef
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp37 DebuggerSP debugger_sp(Debugger::GetDebuggerAtIndex(debugger_idx)); in ShouldAskForConfirmation()
H A DCommandObjectPlatform.cpp1241 DebuggerSP debugger_sp = in SetOptionValue()
1243 : DebuggerSP(); in SetOptionValue()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h349 lldb::DebuggerSP m_debugger_sp;
354 SynchronicityHandler(lldb::DebuggerSP, ScriptedCommandSynchronicity);
H A DScriptInterpreterPython.cpp116 const lldb::DebuggerSP debugger_sp);
169 lldb::DebuggerSP &debugger, const char *args,
174 LLDBSwigPythonCallCommandObject(void *implementor, lldb::DebuggerSP &debugger,
182 lldb::DebuggerSP &debugger);
2157 DebuggerSP debugger_sp(m_debugger.shared_from_this()); in CreateScriptCommandObject()
2787 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in LoadScriptingModule()
2972 lldb::DebuggerSP debugger_sp, ScriptedCommandSynchronicity synchro) in SynchronicityHandler()
2996 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in RunScriptBasedCommand()
3040 lldb::DebuggerSP debugger_sp = m_debugger.shared_from_this(); in RunScriptBasedCommand()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig255 const lldb::DebuggerSP debugger_sp
926 lldb::DebuggerSP& debugger,
966 lldb::DebuggerSP& debugger,
1238 lldb::DebuggerSP& debugger
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1073 DebuggerSP debugger = Debugger::GetDebuggerAtIndex(didx); in KillProcess()