Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp121 void IOHandler::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
123 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
128 bool IOHandlerStack::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
132 m_top->PrintAsync(s, len, is_stdout); in PrintAsync()
634 void IOHandlerEditline::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
638 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
657 IOHandler::PrintAsync(s, len, is_stdout); in PrintAsync()
660 IOHandler::PrintAsync(prompt, strlen(prompt), is_stdout); in PrintAsync()
H A DDebugger.cpp1150 void Debugger::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
1151 bool printed = m_io_handler_stack.PrintAsync(s, len, is_stdout); in PrintAsync()
1154 is_stdout ? m_output_stream_sp : m_error_stream_sp; in PrintAsync()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h162 virtual void PrintAsync(const char *s, size_t len, bool is_stdout);
410 void PrintAsync(const char *s, size_t len, bool is_stdout) override;
536 bool PrintAsync(const char *s, size_t len, bool is_stdout);
H A DDebugger.h234 void PrintAsync(const char *s, size_t len, bool is_stdout);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h693 bool is_stdout);
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3041 bool is_stdout) { in PrintCommandOutput() argument
3043 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()