Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp421 StreamString run_string; in ScriptInterpreterPythonImpl() local
422 run_string.Printf("%s = dict()", m_dictionary_name.c_str()); in ScriptInterpreterPythonImpl()
425 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
427 run_string.Clear(); in ScriptInterpreterPythonImpl()
428 run_string.Printf( in ScriptInterpreterPythonImpl()
431 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
435 run_string.Clear(); in ScriptInterpreterPythonImpl()
436 run_string.Printf("run_one_line (%s, 'from importlib import reload as reload_module')", in ScriptInterpreterPythonImpl()
438 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
444 run_string.Clear(); in ScriptInterpreterPythonImpl()
[all …]
H A DScriptInterpreterPythonImpl.h466 StreamString run_string; in Run() local
467 run_string.Printf("run_python_interpreter (%s)", in Run()
469 PyRun_SimpleString(run_string.GetData()); in Run()