Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPython.cpp540 StreamString run_string; in ScriptInterpreterPythonImpl() local
541 run_string.Printf("%s = dict()", m_dictionary_name.c_str()); in ScriptInterpreterPythonImpl()
544 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
546 run_string.Clear(); in ScriptInterpreterPythonImpl()
547 run_string.Printf( in ScriptInterpreterPythonImpl()
550 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
554 run_string.Clear(); in ScriptInterpreterPythonImpl()
555 run_string.Printf("run_one_line (%s, 'from six.moves import reload_module')", in ScriptInterpreterPythonImpl()
557 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
563 run_string.Clear(); in ScriptInterpreterPythonImpl()
[all …]
DScriptInterpreterPythonImpl.h465 StreamString run_string; in Run() local
466 run_string.Printf("run_python_interpreter (%s)", in Run()
468 PyRun_SimpleString(run_string.GetData()); in Run()