Home
last modified time | relevance | path

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

/llvm-project/lldb/include/lldb/Host/
H A DStreamFile.h41 std::shared_ptr<File> GetFileSP() { return m_file_sp; } in GetFileSP() function
/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp248 result->SetImmediateOutputFile(debugger.GetOutputStream().GetFileSP()); in ScriptInterpreterIORedirect()
249 result->SetImmediateErrorFile(debugger.GetErrorStream().GetFileSP()); in ScriptInterpreterIORedirect()
/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h119 lldb::FileSP GetOutputFile() const { return m_output_file_sp->GetFileSP(); } in GetErrorFile()
120 lldb::FileSP GetErrorFile() const { return m_error_file_sp->GetFileSP(); }
/llvm-project/lldb/source/API/
H A DSBDebugger.cpp521 SBFile file(m_opaque_sp->GetOutputStream().GetFileSP()); in GetOutputFile()
541 SBFile file(m_opaque_sp->GetErrorStream().GetFileSP()); in GetErrorFile()
584 result.PutError(m_opaque_sp->GetErrorStream().GetFileSP()); in HandleCommand()
585 result.PutOutput(m_opaque_sp->GetOutputStream().GetFileSP()); in HandleCommand()
/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp699 SetStdHandle(top_out_sp->GetFileSP(), "stdout", m_saved_stdout, "w"); in EnterSession()
704 SetStdHandle(top_err_sp->GetFileSP(), "stderr", m_saved_stderr, "w"); in EnterSession()