Home
last modified time | relevance | path

Searched refs:is_stdout (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lldb/source/Core/
H A DIOHandler.cpp125 void IOHandler::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
127 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
132 bool IOHandlerStack::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
136 m_top->PrintAsync(s, len, is_stdout); in PrintAsync()
620 void IOHandlerEditline::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
624 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
643 IOHandler::PrintAsync(s, len, is_stdout); in PrintAsync()
646 IOHandler::PrintAsync(prompt, strlen(prompt), is_stdout); in PrintAsync()
H A DDebugger.cpp1078 void Debugger::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
1079 bool printed = m_io_handler_stack.PrintAsync(s, len, is_stdout); in PrintAsync()
1082 is_stdout ? m_output_stream_sp : m_error_stream_sp; in PrintAsync()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DIOHandler.h166 virtual void PrintAsync(const char *s, size_t len, bool is_stdout);
418 void PrintAsync(const char *s, size_t len, bool is_stdout) override;
543 bool PrintAsync(const char *s, size_t len, bool is_stdout);
H A DDebugger.h231 void PrintAsync(const char *s, size_t len, bool is_stdout);
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h673 bool is_stdout);
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2987 bool is_stdout) { in PrintCommandOutput() argument
2989 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()