Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/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()
610 void IOHandlerEditline::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
614 lldb::StreamFileSP stream = is_stdout ? m_output_sp : m_error_sp; in PrintAsync()
633 IOHandler::PrintAsync(s, len, is_stdout); in PrintAsync()
636 IOHandler::PrintAsync(prompt, strlen(prompt), is_stdout); in PrintAsync()
H A DDebugger.cpp1068 void Debugger::PrintAsync(const char *s, size_t len, bool is_stdout) { in PrintAsync() argument
1069 bool printed = m_io_handler_stack.PrintAsync(s, len, is_stdout); in PrintAsync()
1072 is_stdout ? m_output_stream_sp : m_error_stream_sp; in PrintAsync()
/openbsd/gnu/llvm/lldb/include/lldb/Core/
H A DIOHandler.h163 virtual void PrintAsync(const char *s, size_t len, bool is_stdout);
412 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 DDebugger.h229 void PrintAsync(const char *s, size_t len, bool is_stdout);
/openbsd/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h685 bool is_stdout);
/openbsd/gnu/llvm/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3035 bool is_stdout) { in PrintCommandOutput() argument
3037 lldb::StreamFileSP stream = is_stdout ? io_handler.GetOutputStreamFileSP() in PrintCommandOutput()