Lines Matching refs:run_string
540 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()
564 run_string.Printf( in ScriptInterpreterPythonImpl()
567 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
568 run_string.Clear(); in ScriptInterpreterPythonImpl()
570 run_string.Printf("run_one_line (%s, 'import lldb.embedded_interpreter; from " in ScriptInterpreterPythonImpl()
574 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
575 run_string.Clear(); in ScriptInterpreterPythonImpl()
577 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64 in ScriptInterpreterPythonImpl()
580 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
784 StreamString run_string; in EnterSession() local
787 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, in EnterSession()
789 run_string.Printf( in EnterSession()
792 run_string.PutCString("; lldb.target = lldb.debugger.GetSelectedTarget()"); in EnterSession()
793 run_string.PutCString("; lldb.process = lldb.target.GetProcess()"); in EnterSession()
794 run_string.PutCString("; lldb.thread = lldb.process.GetSelectedThread ()"); in EnterSession()
795 run_string.PutCString("; lldb.frame = lldb.thread.GetSelectedFrame ()"); in EnterSession()
796 run_string.PutCString("')"); in EnterSession()
800 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, in EnterSession()
802 run_string.Printf( in EnterSession()
805 run_string.PutCString("')"); in EnterSession()
808 PyRun_SimpleString(run_string.GetData()); in EnterSession()
809 run_string.Clear(); in EnterSession()