Home
last modified time | relevance | path

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

/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedThreadPythonInterface.cpp29 ScriptedThreadPythonInterface::ScriptedThreadPythonInterface( in ScriptedThreadPythonInterface() function in ScriptedThreadPythonInterface
34 ScriptedThreadPythonInterface::CreatePluginObject( in CreatePluginObject()
44 lldb::tid_t ScriptedThreadPythonInterface::GetThreadID() { in GetThreadID()
55 std::optional<std::string> ScriptedThreadPythonInterface::GetName() { in GetName()
66 lldb::StateType ScriptedThreadPythonInterface::GetState() { in GetState()
77 std::optional<std::string> ScriptedThreadPythonInterface::GetQueue() { in GetQueue()
88 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetStopReason() { in GetStopReason()
100 StructuredData::ArraySP ScriptedThreadPythonInterface::GetStackFrames() { in GetStackFrames()
112 StructuredData::DictionarySP ScriptedThreadPythonInterface::GetRegisterInfo() { in GetRegisterInfo()
124 std::optional<std::string> ScriptedThreadPythonInterface::GetRegisterContext() { in GetRegisterContext()
[all …]
H A DScriptedThreadPythonInterface.h1 //===-- ScriptedThreadPythonInterface.h ------------------------*- C++ -*-===//
21 class ScriptedThreadPythonInterface : public ScriptedThreadInterface,
24 ScriptedThreadPythonInterface(ScriptInterpreterPythonImpl &interpreter);
H A DOperatingSystemPythonInterface.cpp1 //===-- ScriptedThreadPythonInterface.cpp ---------------------------------===//
33 : OperatingSystemInterface(), ScriptedThreadPythonInterface(interpreter) {} in CreatePluginObject()
70 return ScriptedThreadPythonInterface::GetRegisterInfo();
H A DOperatingSystemPythonInterface.h17 #include "ScriptedThreadPythonInterface.h"
24 virtual public ScriptedThreadPythonInterface,
H A DCMakeLists.txt30 ScriptedThreadPythonInterface.cpp
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1549 return std::make_shared<ScriptedThreadPythonInterface>(*this); in CreateOperatingSystemInterface()