Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/include/lldb/Host/
H A DStreamFile.h41 std::shared_ptr<File> GetFileSP() { return m_file_sp; } in GetFileSP() function
/src/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp242 result->SetImmediateOutputFile(debugger.GetOutputStream().GetFileSP()); in ScriptInterpreterIORedirect()
243 result->SetImmediateErrorFile(debugger.GetErrorStream().GetFileSP()); in ScriptInterpreterIORedirect()
/src/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h118 lldb::FileSP GetOutputFile() const { return m_output_file_sp->GetFileSP(); } in GetOutputFile()
119 lldb::FileSP GetErrorFile() const { return m_error_file_sp->GetFileSP(); } in GetErrorFile()
/src/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp517 SBFile file(m_opaque_sp->GetOutputStream().GetFileSP()); in GetOutputFile()
537 SBFile file(m_opaque_sp->GetErrorStream().GetFileSP()); in GetErrorFile()
580 result.PutError(m_opaque_sp->GetErrorStream().GetFileSP()); in HandleCommand()
581 result.PutOutput(m_opaque_sp->GetOutputStream().GetFileSP()); in HandleCommand()
/src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp719 SetStdHandle(top_out_sp->GetFileSP(), "stdout", m_saved_stdout, "w"); in EnterSession()
724 SetStdHandle(top_err_sp->GetFileSP(), "stderr", m_saved_stderr, "w"); in EnterSession()