Searched refs:is_stdout (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | IOHandler.cpp | 121 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 D | Debugger.cpp | 1164 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 D | IOHandler.h | 162 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 D | Debugger.h | 227 void PrintAsync(const char *s, size_t len, bool is_stdout);
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandInterpreter.h | 717 bool is_stdout);
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandInterpreter.cpp | 3055 bool is_stdout) { in PrintCommandOutput() argument 3057 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()
|