Lines Matching refs:run_string
438 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()
462 run_string.Printf( in ScriptInterpreterPythonImpl()
465 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
466 run_string.Clear(); in ScriptInterpreterPythonImpl()
468 run_string.Printf("run_one_line (%s, 'import lldb.embedded_interpreter; from " in ScriptInterpreterPythonImpl()
472 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
473 run_string.Clear(); in ScriptInterpreterPythonImpl()
475 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64 in ScriptInterpreterPythonImpl()
478 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
673 StreamString run_string; in EnterSession() local
676 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, in EnterSession()
678 run_string.Printf( in EnterSession()
681 run_string.PutCString("; lldb.target = lldb.debugger.GetSelectedTarget()"); in EnterSession()
682 run_string.PutCString("; lldb.process = lldb.target.GetProcess()"); in EnterSession()
683 run_string.PutCString("; lldb.thread = lldb.process.GetSelectedThread ()"); in EnterSession()
684 run_string.PutCString("; lldb.frame = lldb.thread.GetSelectedFrame ()"); in EnterSession()
685 run_string.PutCString("')"); in EnterSession()
689 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, in EnterSession()
691 run_string.Printf( in EnterSession()
694 run_string.PutCString("')"); in EnterSession()
697 PyRun_SimpleString(run_string.GetData()); in EnterSession()
698 run_string.Clear(); in EnterSession()