| /freebsd/contrib/llvm-project/lldb/source/Plugins/Protocol/MCP/ |
| H A D | Resource.cpp | 17 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 D | Tool.cpp | 19 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 D | Resource.h | 43 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 D | Debugger.h | 528 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 D | Module.h | 817 void ReportWarningOptimization(std::optional<lldb::user_id_t> debugger_id); 821 std::optional<lldb::user_id_t> debugger_id);
|
| H A D | Telemetry.h | 84 lldb::user_id_t debugger_id = LLDB_INVALID_UID; member
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Debugger.cpp | 1660 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 D | Telemetry.cpp | 118 lldb_entry->debugger_id = debugger->GetID(); in preDispatch()
|
| H A D | Module.cpp | 1062 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 D | ScriptInterpreterLua.h | 80 llvm::Error EnterSession(lldb::user_id_t debugger_id);
|
| H A D | ScriptInterpreterLua.cpp | 254 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 D | lldb-private-types.h | 146 typedef void (*DebuggerDestroyCallback)(lldb::user_id_t debugger_id,
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBDefines.h | 145 typedef void (*SBDebuggerDestroyCallback)(lldb::user_id_t debugger_id,
|
| /freebsd/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-wrapper.swig | 1058 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 D | Target.cpp | 4799 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()
|