Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h62 const lldb::FileSP &input_sp, const lldb::StreamFileSP &output_sp,
63 const lldb::StreamFileSP &error_sp, uint32_t flags);
129 lldb::StreamFileSP GetOutputStreamFileSP();
131 lldb::StreamFileSP GetErrorStreamFileSP();
169 lldb::StreamFileSP m_output_sp;
170 lldb::StreamFileSP m_error_sp;
339 const lldb::StreamFileSP &output_sp,
340 const lldb::StreamFileSP &error_sp, uint32_t flags,
354 const lldb::StreamFileSP &, const lldb::StreamFileSP &,
H A DDebugger.h143 lldb::StreamFileSP GetOutputStreamSP() { return m_output_stream_sp; } in GetOutputStreamSP()
145 lldb::StreamFileSP GetErrorStreamSP() { return m_error_stream_sp; } in GetErrorStreamSP()
216 lldb::StreamFileSP &out,
217 lldb::StreamFileSP &err);
679 lldb::StreamFileSP m_output_stream_sp;
680 lldb::StreamFileSP m_error_stream_sp;
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp58 StreamFileSP(), // Adopt STDOUT from top input reader in IOHandler()
59 StreamFileSP(), // Adopt STDERR from top input reader in IOHandler()
66 const lldb::StreamFileSP &output_sp, in IOHandler()
67 const lldb::StreamFileSP &error_sp, uint32_t flags) in IOHandler()
105 StreamFileSP IOHandler::GetOutputStreamFileSP() { return m_output_sp; } in GetOutputStreamFileSP()
107 StreamFileSP IOHandler::GetErrorStreamFileSP() { return m_error_sp; } in GetErrorStreamFileSP()
123 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
233 StreamFileSP(), // Inherit output from top input reader in IOHandlerEditline()
234 StreamFileSP(), // Inherit error from top input reader in IOHandlerEditline()
242 const lldb::StreamFileSP &output_sp, const lldb::StreamFileSP &error_sp, in IOHandlerEditline()
[all …]
H A DDebugger.cpp1153 lldb::StreamFileSP stream = in PrintAsync()
1180 void Debugger::AdoptTopIOHandlerFilesIfInvalid(FileSP &in, StreamFileSP &out, in AdoptTopIOHandlerFilesIfInvalid()
1181 StreamFileSP &err) { in AdoptTopIOHandlerFilesIfInvalid()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp213 if (StreamFileSP stream_sp = StreamFileSP( in NotifyBreakpointHit()
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp106 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerActivated()
192 lldb::StreamFileSP &error_sp) { in ReadCode()
222 lldb::StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
223 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/REPL/Clang/
H A DClangREPL.h51 bool PrintOneVariable(Debugger &debugger, lldb::StreamFileSP &output_sp,
H A DClangREPL.cpp88 lldb::StreamFileSP &output_sp, in PrintOneVariable()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp524 StreamFileSP output_sp = io_handler.GetOutputStreamFileSP(); in IOHandlerInputComplete()
525 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
565 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
H A DCommandObjectWatchpointCommand.cpp185 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectCommands.cpp833 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
1493 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
1502 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectBreakpointCommand.cpp208 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectType.cpp170 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
179 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
407 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
416 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectTarget.cpp5021 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
5033 StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
5050 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h147 lldb::StreamFileSP &output_sp,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h128 lldb::StreamFileSP m_output_file_sp;
129 lldb::StreamFileSP m_error_file_sp;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp119 StreamFileSP Stream = target.GetDebugger().GetOutputStreamSP(); in RetrieveReportData()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp507 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
545 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
568 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
698 lldb::StreamFileSP top_out_sp, top_err_sp; in EnterSession()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h420 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP; typedef
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2786 lldb::StreamFileSP empty_stream_sp; in HandleCommandsFromFile()
3043 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()