Lines Matching refs:run_string
417 StreamString run_string; in ScriptInterpreterPythonImpl() local
418 run_string.Printf("%s = dict()", m_dictionary_name.c_str()); in ScriptInterpreterPythonImpl()
421 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
423 run_string.Clear(); in ScriptInterpreterPythonImpl()
424 run_string.Printf( in ScriptInterpreterPythonImpl()
427 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
431 run_string.Clear(); in ScriptInterpreterPythonImpl()
432 run_string.Printf("run_one_line (%s, 'from six.moves import reload_module')", in ScriptInterpreterPythonImpl()
434 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
440 run_string.Clear(); in ScriptInterpreterPythonImpl()
441 run_string.Printf( in ScriptInterpreterPythonImpl()
444 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
445 run_string.Clear(); in ScriptInterpreterPythonImpl()
447 run_string.Printf("run_one_line (%s, 'import lldb.embedded_interpreter; from " in ScriptInterpreterPythonImpl()
451 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
452 run_string.Clear(); in ScriptInterpreterPythonImpl()
454 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64 in ScriptInterpreterPythonImpl()
457 PyRun_SimpleString(run_string.GetData()); in ScriptInterpreterPythonImpl()
655 StreamString run_string; in EnterSession() local
658 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, in EnterSession()
660 run_string.Printf( in EnterSession()
663 run_string.PutCString("; lldb.target = lldb.debugger.GetSelectedTarget()"); in EnterSession()
664 run_string.PutCString("; lldb.process = lldb.target.GetProcess()"); in EnterSession()
665 run_string.PutCString("; lldb.thread = lldb.process.GetSelectedThread ()"); in EnterSession()
666 run_string.PutCString("; lldb.frame = lldb.thread.GetSelectedFrame ()"); in EnterSession()
667 run_string.PutCString("')"); in EnterSession()
671 run_string.Printf("run_one_line (%s, 'lldb.debugger_unique_id = %" PRIu64, in EnterSession()
673 run_string.Printf( in EnterSession()
676 run_string.PutCString("')"); in EnterSession()
679 PyRun_SimpleString(run_string.GetData()); in EnterSession()
680 run_string.Clear(); in EnterSession()