| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 65 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(); 174 lldb::StreamFileSP m_output_sp; 175 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 D | Debugger.h | 163 lldb::StreamFileSP GetOutputStreamSP() { return m_output_stream_sp; } in GetOutputStreamSP() 165 lldb::StreamFileSP GetErrorStreamSP() { return m_error_stream_sp; } in GetErrorStreamSP() 234 lldb::StreamFileSP &out, 235 lldb::StreamFileSP &err); 470 lldb::StreamFileSP m_output_stream_sp; 471 lldb::StreamFileSP m_error_stream_sp;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandler.cpp | 59 StreamFileSP(), // Adopt STDOUT from top input reader in IOHandler() 60 StreamFileSP(), // Adopt STDERR from top input reader in IOHandler() 67 const lldb::StreamFileSP &output_sp, in IOHandler() 68 const lldb::StreamFileSP &error_sp, uint32_t flags, in IOHandler() 108 StreamFileSP IOHandler::GetOutputStreamFileSP() { return m_output_sp; } in GetOutputStreamFileSP() 110 StreamFileSP IOHandler::GetErrorStreamFileSP() { return m_error_sp; } in GetErrorStreamFileSP() 231 StreamFileSP(), // Inherit output from top input reader in IOHandlerEditline() 232 StreamFileSP(), // Inherit error from top input reader in IOHandlerEditline() 240 const lldb::StreamFileSP &output_sp, const lldb::StreamFileSP &error_sp, in IOHandlerEditline()
|
| H A D | Debugger.cpp | 966 void Debugger::AdoptTopIOHandlerFilesIfInvalid(FileSP &in, StreamFileSP &out, in AdoptTopIOHandlerFilesIfInvalid() 967 StreamFileSP &err) { in AdoptTopIOHandlerFilesIfInvalid()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 99 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerActivated() 184 lldb::StreamFileSP &error_sp) { in ReadCode() 214 lldb::StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete() 215 lldb::StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 493 StreamFileSP output_sp = io_handler.GetOutputStreamFileSP(); in IOHandlerInputComplete() 494 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete() 534 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
|
| H A D | CommandObjectCommands.cpp | 791 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated() 1430 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated() 1439 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
|
| H A D | CommandObjectWatchpointCommand.cpp | 215 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
|
| H A D | CommandObjectBreakpointCommand.cpp | 237 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated()
|
| H A D | CommandObjectType.cpp | 154 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated() 163 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete() 385 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated() 394 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete()
|
| H A D | CommandObjectTarget.cpp | 4566 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated() 4578 StreamFileSP error_sp(io_handler.GetErrorStreamFileSP()); in IOHandlerInputComplete() 4595 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerInputComplete()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | REPL.h | 129 lldb::StreamFileSP &output_sp,
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 119 lldb::StreamFileSP m_output_file_sp; 120 lldb::StreamFileSP m_error_file_sp;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 268 StreamFileSP stream_sp( in NotifyBreakpointHit()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 123 StreamFileSP Stream = target.GetDebugger().GetOutputStreamSP(); in RetrieveReportData()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 621 StreamFileSP output_sp(io_handler.GetOutputStreamFileSP()); in IOHandlerActivated() 658 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete() 680 StreamFileSP error_sp = io_handler.GetErrorStreamFileSP(); in IOHandlerInputComplete() 814 lldb::StreamFileSP top_out_sp, top_err_sp; in EnterSession()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-forward.h | 416 typedef std::shared_ptr<lldb_private::StreamFile> StreamFileSP; typedef
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 2536 lldb::StreamFileSP empty_stream_sp; in HandleCommandsFromFile()
|