Home
last modified time | relevance | path

Searched refs:GetFileSP (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DScriptInterpreter.cpp211 result->SetImmediateOutputFile(debugger.GetOutputStream().GetFileSP()); in ScriptInterpreterIORedirect()
212 result->SetImmediateErrorFile(debugger.GetErrorStream().GetFileSP()); in ScriptInterpreterIORedirect()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DStreamFile.h41 std::shared_ptr<File> GetFileSP() { return m_file_sp; } in GetFileSP() function
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h108 lldb::FileSP GetOutputFile() const { return m_output_file_sp->GetFileSP(); } in GetOutputFile()
109 lldb::FileSP GetErrorFile() const { return m_error_file_sp->GetFileSP(); } in GetErrorFile()
/llvm-project-15.0.7/lldb/source/API/
H A DSBDebugger.cpp468 SBFile file(m_opaque_sp->GetOutputStream().GetFileSP()); in GetOutputFile()
488 SBFile file(m_opaque_sp->GetErrorStream().GetFileSP()); in GetErrorFile()
531 result.PutError(m_opaque_sp->GetErrorStream().GetFileSP()); in HandleCommand()
532 result.PutOutput(m_opaque_sp->GetOutputStream().GetFileSP()); in HandleCommand()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp701 SetStdHandle(top_out_sp->GetFileSP(), "stdout", m_saved_stdout, "w"); in EnterSession()
706 SetStdHandle(top_err_sp->GetFileSP(), "stderr", m_saved_stderr, "w"); in EnterSession()