Home
last modified time | relevance | path

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

/freebsd/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()
638 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
657 IOHandler::PrintAsync(s, len, is_stdout);
660 IOHandler::PrintAsync(prompt, strlen(prompt), is_stdout);
610 PrintAsync(const char * s,size_t len,bool is_stdout) PrintAsync() argument
H A DDebugger.cpp1164 void Debugger::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
1165 bool printed = m_io_handler_stack.PrintAsync(s, len, is_stdout); in PrintAsync()
1168 is_stdout ? m_output_stream_sp : m_error_stream_sp; in PrintAsync()
/freebsd/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.h227 void PrintAsync(const char *s, size_t len, bool is_stdout);
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h717 bool is_stdout);
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3055 bool is_stdout) { in PrintCommandOutput() argument
3057 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()