Home
last modified time | relevance | path

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

/freebsd/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 in IOHandlerEditline()
[all...]
H A DDebugger.cpp1167 lldb::StreamFileSP stream = in PrintAsync()
1194 void Debugger::AdoptTopIOHandlerFilesIfInvalid(FileSP &in, StreamFileSP &out, in AdoptTopIOHandlerFilesIfInvalid()
1195 StreamFileSP &err) { in AdoptTopIOHandlerFilesIfInvalid()
/freebsd/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
[all...]
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()
209 lldb::StreamFileSP &out,
210 lldb::StreamFileSP &err);
688 lldb::StreamFileSP m_output_stream_sp;
689 lldb::StreamFileSP m_error_stream_sp;
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.cpp213 if (StreamFileSP stream_sp = StreamFileSP( in NotifyBreakpointHit()
/freebsd/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/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/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp516 StreamFileSP output_sp = io_handler.GetOutputStreamFileSP(); in IOHandlerInputComplete()
517 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
557 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
H A DCommandObjectWatchpointCommand.cpp173 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectBreakpointCommand.cpp196 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 DCommandObjectCommands.cpp789 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
2145 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
2154 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectTarget.cpp4921 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
4933 StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
4950 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DREPL.h147 lldb::StreamFileSP &output_sp,
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h130 lldb::StreamFileSP m_output_file_sp;
131 lldb::StreamFileSP m_error_file_sp;
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp119 StreamFileSP Stream = target.GetDebugger().GetOutputStreamSP(); in RetrieveReportData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp513 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
550 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
573 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
703 lldb::StreamFileSP top_out_sp, top_err_sp; in EnterSession()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h428 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP; typedef
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2800 lldb::StreamFileSP empty_stream_sp; in HandleCommandsFromFile()
3057 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()