Home
last modified time | relevance | path

Searched refs:m_python_object_sp (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Plugins/OperatingSystem/Python/
DOperatingSystemPython.cpp92 m_python_object_sp () in OperatingSystemPython()
121 m_python_object_sp = object_sp; in OperatingSystemPython()
136 if (!m_interpreter || !m_python_object_sp) in GetDynamicRegisterInfo()
143 PythonDictionary dictionary(m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp)); in GetDynamicRegisterInfo()
174 if (!m_interpreter || !m_python_object_sp) in UpdateThreadList()
192 PythonList threads_list(m_interpreter->OSPlugin_ThreadsInfo(m_python_object_sp)); in UpdateThreadList()
312 if (!m_interpreter || !m_python_object_sp || !thread) in CreateRegisterContextForThread()
347 …ring reg_context_data(m_interpreter->OSPlugin_RegisterContextData (m_python_object_sp, thread->Get… in CreateRegisterContextForThread()
391 if (m_interpreter && m_python_object_sp) in CreateThread()
400 …PythonDictionary thread_info_dict (m_interpreter->OSPlugin_CreateThread(m_python_object_sp, tid, c… in CreateThread()
DOperatingSystemPython.h89 return m_python_object_sp && m_python_object_sp->GetObject() != NULL; in IsValid()
104 lldb::ScriptInterpreterObjectSP m_python_object_sp; variable