Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Protocol/MCP/
H A DResource.cpp17 uint64_t debugger_id = 0; member
23 llvm::json::Object Result{{"debugger_id", DR.debugger_id}, in toJSON()
31 size_t debugger_id = 0; member
41 llvm::json::Object Result{{"debugger_id", TR.debugger_id}, in toJSON()
69 const lldb::user_id_t debugger_id = debugger.GetID(); in GetDebuggerResource() local
72 resource.uri = llvm::formatv("lldb://debugger/{0}", debugger_id); in GetDebuggerResource()
75 llvm::formatv("Information about debugger instance {0}: {1}", debugger_id, in GetDebuggerResource()
83 const size_t debugger_id = target.GetDebugger().GetID(); in GetTargetResource() local
92 llvm::formatv("lldb://debugger/{0}/target/{1}", debugger_id, target_idx); in GetTargetResource()
96 target_idx, debugger_id); in GetTargetResource()
[all …]
H A DTool.cpp19 uint64_t debugger_id; member
26 return O && O.map("debugger_id", A.debugger_id) && in fromJSON()
68 Debugger::FindDebuggerWithID(arguments.debugger_id); in Call()
71 llvm::formatv("no debugger with id {0}", arguments.debugger_id)); in Call()
H A DResource.h43 ReadDebuggerResource(llvm::StringRef uri, lldb::user_id_t debugger_id);
45 ReadTargetResource(llvm::StringRef uri, lldb::user_id_t debugger_id,
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDebugger.h528 std::optional<lldb::user_id_t> debugger_id = std::nullopt,
550 std::optional<lldb::user_id_t> debugger_id = std::nullopt,
570 std::optional<lldb::user_id_t> debugger_id = std::nullopt,
658 std::optional<lldb::user_id_t> debugger_id,
662 std::optional<lldb::user_id_t> debugger_id,
H A DModule.h817 void ReportWarningOptimization(std::optional<lldb::user_id_t> debugger_id);
821 std::optional<lldb::user_id_t> debugger_id);
H A DTelemetry.h84 lldb::user_id_t debugger_id = LLDB_INVALID_UID; member
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1660 std::optional<lldb::user_id_t> debugger_id, in ReportProgress() argument
1663 if (debugger_id) { in ReportProgress()
1666 DebuggerSP debugger_sp = FindDebuggerWithID(*debugger_id); in ReportProgress()
1718 std::optional<lldb::user_id_t> debugger_id, in ReportDiagnosticImpl() argument
1734 if (debugger_id) { in ReportDiagnosticImpl()
1737 DebuggerSP debugger_sp = FindDebuggerWithID(*debugger_id); in ReportDiagnosticImpl()
1759 std::optional<lldb::user_id_t> debugger_id, in ReportWarning() argument
1761 ReportDiagnosticImpl(eSeverityWarning, std::move(message), debugger_id, once); in ReportWarning()
1765 std::optional<lldb::user_id_t> debugger_id, in ReportError() argument
1767 ReportDiagnosticImpl(eSeverityError, std::move(message), debugger_id, once); in ReportError()
[all …]
H A DTelemetry.cpp118 lldb_entry->debugger_id = debugger->GetID(); in preDispatch()
H A DModule.cpp1062 std::optional<lldb::user_id_t> debugger_id) { in ReportWarningOptimization() argument
1072 Debugger::ReportWarning(msg.str(), debugger_id, GetDiagnosticOnceFlag(msg)); in ReportWarningOptimization()
1076 LanguageType language, std::optional<lldb::user_id_t> debugger_id) { in ReportWarningUnsupportedLanguage() argument
1083 Debugger::ReportWarning(msg.str(), debugger_id, GetDiagnosticOnceFlag(msg)); in ReportWarningUnsupportedLanguage()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h80 llvm::Error EnterSession(lldb::user_id_t debugger_id);
H A DScriptInterpreterLua.cpp254 llvm::Error ScriptInterpreterLua::EnterSession(user_id_t debugger_id) { in EnterSession() argument
264 return m_lua->Run(llvm::formatv(fmt_str, debugger_id).str()); in EnterSession()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h146 typedef void (*DebuggerDestroyCallback)(lldb::user_id_t debugger_id,
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBDefines.h145 typedef void (*SBDebuggerDestroyCallback)(lldb::user_id_t debugger_id,
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig1058 static void LLDBSwigPythonCallPythonSBDebuggerTerminateCallback(lldb::user_id_t debugger_id,
1063 reinterpret_cast<PyObject *>(baton), const_cast<char *>("l"), debugger_id);
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DTarget.cpp4799 std::optional<lldb::user_id_t> debugger_id; in CheckJITObjectsDir() local
4801 debugger_id = m_target->GetDebugger().GetID(); in CheckJITObjectsDir()
4802 Debugger::ReportError(buffer, debugger_id); in CheckJITObjectsDir()