Home
last modified time | relevance | path

Searched refs:StreamFileSP (Results 1 – 20 of 20) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandler.h65 const lldb::FileSP &input_sp, const lldb::StreamFileSP &output_sp,
66 const lldb::StreamFileSP &error_sp, uint32_t flags,
133 lldb::StreamFileSP GetOutputStreamFileSP();
135 lldb::StreamFileSP GetErrorStreamFileSP();
173 lldb::StreamFileSP m_output_sp;
174 lldb::StreamFileSP m_error_sp;
346 const lldb::StreamFileSP &output_sp,
347 const lldb::StreamFileSP &error_sp, uint32_t flags,
362 const lldb::StreamFileSP &, const lldb::StreamFileSP &,
H A DDebugger.h136 lldb::StreamFileSP GetOutputStreamSP() { return m_output_stream_sp; } in GetOutputStreamSP()
138 lldb::StreamFileSP GetErrorStreamSP() { return m_error_stream_sp; } in GetErrorStreamSP()
213 lldb::StreamFileSP &out,
214 lldb::StreamFileSP &err);
522 lldb::StreamFileSP m_output_stream_sp;
523 lldb::StreamFileSP m_error_stream_sp;
/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandler.cpp60 StreamFileSP(), // Adopt STDOUT from top input reader in IOHandler()
61 StreamFileSP(), // Adopt STDERR from top input reader in IOHandler()
68 const lldb::StreamFileSP &output_sp, in IOHandler()
69 const lldb::StreamFileSP &error_sp, uint32_t flags, in IOHandler()
109 StreamFileSP IOHandler::GetOutputStreamFileSP() { return m_output_sp; } in GetOutputStreamFileSP()
111 StreamFileSP IOHandler::GetErrorStreamFileSP() { return m_error_sp; } in GetErrorStreamFileSP()
127 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
237 StreamFileSP(), // Inherit output from top input reader in IOHandlerEditline()
238 StreamFileSP(), // Inherit error from top input reader in IOHandlerEditline()
246 const lldb::StreamFileSP &output_sp, const lldb::StreamFileSP &error_sp, in IOHandlerEditline()
[all …]
H A DDebugger.cpp1081 lldb::StreamFileSP stream = in PrintAsync()
1108 void Debugger::AdoptTopIOHandlerFilesIfInvalid(FileSP &in, StreamFileSP &out, in AdoptTopIOHandlerFilesIfInvalid()
1109 StreamFileSP &err) { in AdoptTopIOHandlerFilesIfInvalid()
/llvm-project-15.0.7/lldb/source/Expression/
H A DREPL.cpp104 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerActivated()
189 lldb::StreamFileSP &error_sp) { in ReadCode()
219 lldb::StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
220 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
/llvm-project-15.0.7/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.h48 bool PrintOneVariable(Debugger &debugger, lldb::StreamFileSP &output_sp,
H A DClangREPL.cpp85 lldb::StreamFileSP &output_sp, in PrintOneVariable()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectExpression.cpp473 StreamFileSP output_sp = io_handler.GetOutputStreamFileSP(); in IOHandlerInputComplete()
474 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
514 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
H A DCommandObjectWatchpointCommand.cpp185 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectCommands.cpp836 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
1469 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
1478 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectBreakpointCommand.cpp208 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectType.cpp155 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
164 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
386 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
395 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectTarget.cpp4727 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
4739 StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
4756 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
/llvm-project-15.0.7/lldb/include/lldb/Expression/
H A DREPL.h129 lldb::StreamFileSP &output_sp,
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h120 lldb::StreamFileSP m_output_file_sp;
121 lldb::StreamFileSP m_error_file_sp;
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp266 StreamFileSP stream_sp( in NotifyBreakpointHit()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp119 StreamFileSP Stream = target.GetDebugger().GetOutputStreamSP(); in RetrieveReportData()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp492 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
529 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
551 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
685 lldb::StreamFileSP top_out_sp, top_err_sp; in EnterSession()
/llvm-project-15.0.7/lldb/include/lldb/
H A Dlldb-forward.h396 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP; typedef
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2732 lldb::StreamFileSP empty_stream_sp; in HandleCommandsFromFile()
2989 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()