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.cpp419 StreamString run_string; in ScriptInterpreterPythonImpl() local
420 run_string.Printf("%s = dict()", m_dictionary_name.c_str()); in ScriptInterpreterPythonImpl()
423 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
425 run_string.Clear(); in ScriptInterpreterPythonImpl()
426 run_string.Printf( in ScriptInterpreterPythonImpl()
429 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
433 run_string.Clear(); in ScriptInterpreterPythonImpl()
434 run_string.Printf( in ScriptInterpreterPythonImpl()
437 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
443 run_string.Clear(); in ScriptInterpreterPythonImpl()
[all …]
H A DScriptInterpreterPythonImpl.h483 StreamString run_string; in Run() local
484 run_string.Printf("run_python_interpreter (%s)", in Run()
486 PyRun_SimpleString(run_string.GetData()); in Run()