Searched refs:is_stdout (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandler.cpp | 109 void IOHandler::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument 110 lldb::LockableStreamFileSP stream_sp = is_stdout ? m_output_sp : m_error_sp; in PrintAsync() 115 bool IOHandlerStack::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument 119 m_top->PrintAsync(s, len, is_stdout); in PrintAsync() 637 void IOHandlerEditline::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument 640 lldb::LockableStreamFileSP stream_sp = is_stdout ? m_output_sp : m_error_sp; in PrintAsync() 659 IOHandler::PrintAsync(s, len, is_stdout); in PrintAsync() 662 IOHandler::PrintAsync(prompt, strlen(prompt), is_stdout); in PrintAsync()
|
| H A D | Debugger.cpp | 1319 void Debugger::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument 1320 bool printed = m_io_handler_stack.PrintAsync(s, len, is_stdout); in PrintAsync() 1323 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 | 159 virtual void PrintAsync(const char *s, size_t len, bool is_stdout); 407 void PrintAsync(const char *s, size_t len, bool is_stdout) override; 537 bool PrintAsync(const char *s, size_t len, bool is_stdout);
|
| H A D | Debugger.h | 222 void PrintAsync(const char *s, size_t len, bool is_stdout);
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 728 bool is_stdout);
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | CommandInterpreter.cpp | 3207 bool is_stdout) { in PrintCommandOutput() argument 3209 lldb::LockableStreamFileSP stream = is_stdout in PrintCommandOutput()
|