Lines Matching defs:ScriptInterpreterIORedirect
185 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
186 ScriptInterpreterIORedirect::Create(bool enable_io, Debugger &debugger,
189 return std::unique_ptr<ScriptInterpreterIORedirect>(
190 new ScriptInterpreterIORedirect(debugger, result));
202 return std::unique_ptr<ScriptInterpreterIORedirect>(
203 new ScriptInterpreterIORedirect(std::move(*nullin), std::move(*nullout)));
206 ScriptInterpreterIORedirect::ScriptInterpreterIORedirect(
211 m_communication("lldb.ScriptInterpreterIORedirect.comm"),
214 ScriptInterpreterIORedirect::ScriptInterpreterIORedirect(
216 : m_communication("lldb.ScriptInterpreterIORedirect.comm"),
258 void ScriptInterpreterIORedirect::Flush() {
265 ScriptInterpreterIORedirect::~ScriptInterpreterIORedirect() {