Home
last modified time | relevance | path

Searched refs:Debugger (Results 1 – 25 of 125) sorted by relevance

12345

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp105 static Debugger::DebuggerList *g_debugger_list_ptr =
111 Debugger::eStopDisassemblyTypeNever,
116 Debugger::eStopDisassemblyTypeNoDebugInfo,
121 Debugger::eStopDisassemblyTypeNoSource,
128 Debugger::eStopDisassemblyTypeAlways,
198 LoadPluginCallbackType Debugger::g_load_plugin_callback = nullptr;
200 Status Debugger::SetPropertyValue(const ExecutionContext *exe_ctx, in SetPropertyValue()
273 bool Debugger::GetAutoConfirm() const { in GetAutoConfirm()
279 const FormatEntity::Entry *Debugger::GetDisassemblyFormat() const { in GetDisassemblyFormat()
284 const FormatEntity::Entry *Debugger::GetFrameFormat() const { in GetFrameFormat()
[all …]
H A DPluginManager.cpp257 void PerformDebuggerCallback(Debugger &debugger) { in PerformDebuggerCallback()
983 Debugger &debugger) { in GetScriptInterpreterForLanguage()
1557 void PluginManager::DebuggerInitialize(Debugger &debugger) { in DebuggerInitialize()
1574 GetDebuggerPropertyForPlugins(Debugger &debugger, llvm::StringRef plugin_type_name, in GetDebuggerPropertyForPlugins()
1611 Debugger &debugger, llvm::StringRef plugin_type_name, in GetDebuggerPropertyForPluginsOldStyle()
1645 GetDebuggerPropertyForPluginsPtr(Debugger &, llvm::StringRef, llvm::StringRef,
1650 GetSettingForPlugin(Debugger &debugger, llvm::StringRef setting_name, in GetSettingForPlugin()
1666 CreateSettingForPlugin(Debugger &debugger, llvm::StringRef plugin_type_name, in CreateSettingForPlugin()
1698 PluginManager::GetSettingForDynamicLoaderPlugin(Debugger &debugger, in GetSettingForDynamicLoaderPlugin()
1704 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp, in CreateSettingForDynamicLoaderPlugin()
[all …]
H A DProgress.cpp25 lldb_private::Debugger *debugger) in Progress()
78 Debugger::ReportProgress(m_progress_data.progress_id, m_progress_data.title, in ReportProgress()
172 Debugger::ReportProgress(progress_data.progress_id, progress_data.title, "", in ReportProgress()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DPluginManager.h46 class Debugger; variable
276 Debugger &debugger);
508 static void DebuggerInitialize(Debugger &debugger);
511 GetSettingForDynamicLoaderPlugin(Debugger &debugger,
515 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
519 GetSettingForPlatformPlugin(Debugger &debugger, llvm::StringRef setting_name);
522 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
526 GetSettingForProcessPlugin(Debugger &debugger, llvm::StringRef setting_name);
529 Debugger &debugger, const lldb::OptionValuePropertiesSP &properties_sp,
533 GetSettingForSymbolLocatorPlugin(Debugger &debugger,
[all …]
H A DStreamAsynchronousIO.h19 class Debugger; variable
23 StreamAsynchronousIO(Debugger &debugger, bool for_stdout, bool colors);
33 Debugger &m_debugger;
H A DIOHandler.h33 class Debugger; variable
59 IOHandler(Debugger &debugger, IOHandler::Type type);
61 IOHandler(Debugger &debugger, IOHandler::Type type,
78 // Debugger::DispatchInputInterrupt to be called.
133 Debugger &GetDebugger() { return m_debugger; } in GetDebugger()
167 Debugger &m_debugger;
328 IOHandlerEditline(Debugger &debugger, IOHandler::Type type,
337 IOHandlerEditline(Debugger &debugger, IOHandler::Type type,
349 IOHandlerEditline(Debugger &, IOHandler::Type, const char *, const char *,
353 IOHandlerEditline(Debugger
[all...]
H A DDebugger.h78 class Debugger : public std::enable_shared_from_this<Debugger>,
90 ~Debugger() override;
479 Debugger::InterruptionReport(__func__, __VA_ARGS__))
765 Debugger(lldb::LogOutputCallback m_log_callback, void *baton);
767 Debugger(const Debugger &) = delete;
768 const Debugger &operator=(const Debugger &) = delete;
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTargetList.h23 friend class Debugger;
32 TargetList(Debugger &debugger);
87 Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path,
97 Status CreateTarget(Debugger &debugger, llvm::StringRef user_exe_path,
205 Debugger &debugger, llvm::StringRef user_exe_path,
209 static Status CreateTargetInternal(Debugger &debugger,
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSystemInitializerFull.cpp81 Debugger::SettingsInitialize(); in Initialize()
84 SetLLDBAssertCallback(Debugger::AssertCallback); in Initialize()
90 Debugger::SettingsTerminate(); in Terminate()
H A DSBTypeCategory.cpp356 uint32_t num_debuggers = lldb_private::Debugger::GetNumDebuggers(); in AddTypeSummary()
359 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSummary()
448 uint32_t num_debuggers = lldb_private::Debugger::GetNumDebuggers(); in AddTypeSynthetic()
451 DebuggerSP debugger_sp = lldb_private::Debugger::GetDebuggerAtIndex(j); in AddTypeSynthetic()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/QemuUser/
H A DPlatformQemuUser.h39 Debugger &debugger, Target &target,
42 lldb::ProcessSP Attach(ProcessAttachInfo &attach_info, Debugger &debugger, in Attach()
74 static void DebuggerInitialize(Debugger &debugger);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/None/
H A DScriptInterpreterNone.h18 ScriptInterpreterNone(Debugger &debugger);
33 static lldb::ScriptInterpreterSP CreateInstance(Debugger &debugger);
H A DScriptInterpreterNone.cpp10 #include "lldb/Core/Debugger.h"
24 ScriptInterpreterNone::ScriptInterpreterNone(Debugger &debugger) in LLDB_PLUGIN_DEFINE()
57 ScriptInterpreterNone::CreateInstance(Debugger &debugger) { in CreateInstance()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolLocator.cpp44 Debugger::ReportSymbolChange(module_spec); in DownloadSymbolFileAsync()
51 Debugger::GetThreadPool().async(lookup); in DownloadSymbolFileAsync()
/freebsd/contrib/llvm-project/lldb/source/Initialization/
H A DSystemLifetimeManager.cpp39 Debugger::Initialize(plugin_callback); in Initialize()
49 Debugger::Terminate(); in Terminate()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h86 Debugger &debugger);
125 Debugger *debugger, Target *target,
128 typedef void (*DebuggerInitializeCallback)(Debugger &debugger);
133 llvm::StringRef session_file_dir, lldb_private::Debugger &debugger);
/freebsd/contrib/llvm-project/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.h31 Debugger *debugger, Target *target,
51 bool PrintOneVariable(Debugger &debugger, lldb::StreamFileSP &output_sp,
H A DClangREPL.cpp50 Debugger *debugger, Target *target, in CreateInstance()
87 bool ClangREPL::PrintOneVariable(Debugger &debugger, in PrintOneVariable()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp12 #include "lldb/Core/Debugger.h"
39 IOHandlerLuaInterpreter(Debugger &debugger, in IOHandlerLuaInterpreter()
146 ScriptInterpreterLua::ScriptInterpreterLua(Debugger &debugger) in ScriptInterpreterLua()
282 Debugger &debugger = target->GetDebugger(); in BreakpointCallbackFunction()
310 Debugger &debugger = target->GetDebugger(); in WatchpointCallbackFunction()
394 ScriptInterpreterLua::CreateInstance(Debugger &debugger) { in CreateInstance()
H A DScriptInterpreterLua.h36 ScriptInterpreterLua(Debugger &debugger);
59 static lldb::ScriptInterpreterSP CreateInstance(Debugger &debugger);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTraceIntelPTBundleLoader.h37 TraceIntelPTBundleLoader(Debugger &debugger, in TraceIntelPTBundleLoader()
122 Debugger &m_debugger;
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectQuit.cpp37 for (uint32_t debugger_idx = 0; debugger_idx < Debugger::GetNumDebuggers(); in ShouldAskForConfirmation()
39 DebuggerSP debugger_sp(Debugger::GetDebuggerAtIndex(debugger_idx)); in ShouldAskForConfirmation()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp10 #include "lldb/Core/Debugger.h"
29 Debugger &debugger = m_target.GetDebugger(); in REPL()
39 Debugger *debugger, Target *target, in Create()
75 Debugger &debugger = m_target.GetDebugger(); in GetIOHandler()
232 Debugger &debugger = m_target.GetDebugger(); in IOHandlerInputComplete()
501 Debugger &debugger = m_target.GetDebugger(); in IOHandlerComplete()
569 Debugger &debugger = m_target.GetDebugger(); in RunLoop()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h61 Debugger &debugger, Target &target,
64 lldb::ProcessSP Attach(ProcessAttachInfo &attach_info, Debugger &debugger,
154 size_t ConnectToWaitingProcesses(lldb_private::Debugger &debugger,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.h41 lldb_private::Debugger &debugger,
49 lldb_private::Debugger &debugger,

12345