Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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.cpp1071 lldb::StreamFileSP stream = in PrintAsync()
1098 void Debugger::AdoptTopIOHandlerFilesIfInvalid(FileSP &in, StreamFileSP &out, in AdoptTopIOHandlerFilesIfInvalid()
1099 StreamFileSP &err) { in AdoptTopIOHandlerFilesIfInvalid()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DIOHandler.h63 const lldb::FileSP &input_sp, const lldb::StreamFileSP &output_sp,
64 const lldb::StreamFileSP &error_sp, uint32_t flags);
130 lldb::StreamFileSP GetOutputStreamFileSP();
132 lldb::StreamFileSP GetErrorStreamFileSP();
170 lldb::StreamFileSP m_output_sp;
171 lldb::StreamFileSP m_error_sp;
341 const lldb::StreamFileSP &output_sp,
342 const lldb::StreamFileSP &error_sp, uint32_t flags,
356 const lldb::StreamFileSP &, const lldb::StreamFileSP &,
H A DDebugger.h138 lldb::StreamFileSP GetOutputStreamSP() { return m_output_stream_sp; } in GetOutputStreamSP()
140 lldb::StreamFileSP GetErrorStreamSP() { return m_error_stream_sp; } in GetErrorStreamSP()
211 lldb::StreamFileSP &out,
212 lldb::StreamFileSP &err);
542 lldb::StreamFileSP m_output_stream_sp;
543 lldb::StreamFileSP m_error_stream_sp;
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectExpression.cpp480 StreamFileSP output_sp = io_handler.GetOutputStreamFileSP(); in IOHandlerInputComplete()
481 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
521 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
H A DCommandObjectWatchpointCommand.cpp185 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectCommands.cpp839 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
1472 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
1481 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectBreakpointCommand.cpp208 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
H A DCommandObjectType.cpp157 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
166 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
395 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
404 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
H A DCommandObjectTarget.cpp4742 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
4754 StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
4771 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
/openbsd-src/gnu/llvm/lldb/include/lldb/Expression/
H A DREPL.h129 lldb::StreamFileSP &output_sp,
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h122 lldb::StreamFileSP m_output_file_sp;
123 lldb::StreamFileSP m_error_file_sp;
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp266 StreamFileSP stream_sp( in NotifyBreakpointHit()
/openbsd-src/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp119 StreamFileSP Stream = target.GetDebugger().GetOutputStreamSP(); in RetrieveReportData()
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp496 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
533 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
555 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
689 lldb::StreamFileSP top_out_sp, top_err_sp; in EnterSession()
/openbsd-src/gnu/llvm/lldb/include/lldb/
H A Dlldb-forward.h404 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP; typedef
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2783 lldb::StreamFileSP empty_stream_sp; in HandleCommandsFromFile()
3037 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()