Lines Matching refs:m_interpreter
91 m_interpreter (NULL), in OperatingSystemPython()
99 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter(); in OperatingSystemPython()
100 if (m_interpreter) in OperatingSystemPython()
111 …if (m_interpreter->LoadScriptingModule (python_module_path_cstr, allow_reload, init_session, error… in OperatingSystemPython()
119 …ScriptInterpreterObjectSP object_sp = m_interpreter->OSPlugin_CreatePluginObject(os_plugin_class_n… 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()
191 auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure threads_list stays alive 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()
326 auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure python objects stays alive in CreateRegisterContextForThread()
347 …PythonString reg_context_data(m_interpreter->OSPlugin_RegisterContextData (m_python_object_sp, thr… in CreateRegisterContextForThread()
391 if (m_interpreter && m_python_object_sp) in CreateThread()
399 … auto lock = m_interpreter->AcquireInterpreterLock(); // to make sure thread_info_dict stays alive in CreateThread()
400 …PythonDictionary thread_info_dict (m_interpreter->OSPlugin_CreateThread(m_python_object_sp, tid, c… in CreateThread()