Home
last modified time | relevance | path

Searched refs:ScriptedThreadPythonInterface (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedThreadPythonInterface.cpp28 ScriptedThreadPythonInterface::ScriptedThreadPythonInterface( in ScriptedThreadPythonInterface() function in ScriptedThreadPythonInterface
33 ScriptedThreadPythonInterface::CreatePluginObject( in CreatePluginObject()
43 lldb::tid_t ScriptedThreadPythonInterface::GetThreadID() { in GetThreadID()
53 std::optional<std::string> ScriptedThreadPythonInterface::GetName() { in GetName()
63 lldb::StateType ScriptedThreadPythonInterface::GetState() { in GetState()
73 std::optional<std::string> ScriptedThreadPythonInterface::GetQueue() { in GetQueue()
83 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetStopReason() { in GetStopReason()
94 StructuredData::ArraySP ScriptedThreadPythonInterface::GetStackFrames() { in GetStackFrames()
105 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetRegisterInfo() { in GetRegisterInfo()
116 std::optional<std::string> ScriptedThreadPythonInterface::GetRegisterContext() { in GetRegisterContext()
[all …]
H A DScriptedThreadPythonInterface.h21 class ScriptedThreadPythonInterface : public ScriptedThreadInterface,
24 ScriptedThreadPythonInterface(ScriptInterpreterPythonImpl &interpreter);
H A DOperatingSystemPythonInterface.cpp30 : OperatingSystemInterface(), ScriptedThreadPythonInterface(interpreter) {} in OperatingSystemPythonInterface()
67 return ScriptedThreadPythonInterface::GetRegisterInfo(); in GetRegisterInfo()
H A DOperatingSystemPythonInterface.h23 virtual public ScriptedThreadPythonInterface {
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1533 return std::make_shared<ScriptedThreadPythonInterface>(*this); in CreateScriptedThreadInterface()