Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp438 StreamString run_string; in ScriptInterpreterPythonImpl() local
439 run_string.Printf("%s = dict()", m_dictionary_name.c_str()); in ScriptInterpreterPythonImpl()
442 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
444 run_string.Clear(); in ScriptInterpreterPythonImpl()
445 run_string.Printf( in ScriptInterpreterPythonImpl()
448 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
452 run_string.Clear(); in ScriptInterpreterPythonImpl()
453 run_string.Printf("run_one_line (%s, 'from importlib import reload as reload_module')", in ScriptInterpreterPythonImpl()
455 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
461 run_string.Clear(); in ScriptInterpreterPythonImpl()
[all …]
H A DScriptInterpreterPythonImpl.h477 StreamString run_string; in Run() local
478 run_string.Printf("run_python_interpreter (%s)", in Run()
480 PyRun_SimpleString(run_string.GetData()); in Run()