Home
last modified time | relevance | path

Searched refs:ScriptInterpreterIORedirect (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp163 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
164 ScriptInterpreterIORedirect::Create(bool enable_io, Debugger &debugger, in Create()
167 return std::unique_ptr<ScriptInterpreterIORedirect>( in Create()
168 new ScriptInterpreterIORedirect(debugger, result)); in Create()
180 return std::unique_ptr<ScriptInterpreterIORedirect>( in Create()
181 new ScriptInterpreterIORedirect(std::move(*nullin), std::move(*nullout))); in Create()
184 ScriptInterpreterIORedirect::ScriptInterpreterIORedirect( in ScriptInterpreterIORedirect() function in ScriptInterpreterIORedirect
192 ScriptInterpreterIORedirect::ScriptInterpreterIORedirect( in ScriptInterpreterIORedirect() function in ScriptInterpreterIORedirect
236 void ScriptInterpreterIORedirect::Flush() { in Flush()
243 ScriptInterpreterIORedirect::~ScriptInterpreterIORedirect() { in ~ScriptInterpreterIORedirect()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h105 class ScriptInterpreterIORedirect {
110 static llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
113 ~ScriptInterpreterIORedirect();
123 ScriptInterpreterIORedirect(std::unique_ptr<File> input,
125 ScriptInterpreterIORedirect(Debugger &debugger, CommandReturnObject *result);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp167 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteOneLine()
168 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteOneLine()
180 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error; in ExecuteOneLine()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp839 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteOneLine()
840 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteOneLine()
981 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteOneLineWithReturn()
982 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteOneLineWithReturn()
990 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error; in ExecuteOneLineWithReturn()
1107 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteMultipleLines()
1108 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteMultipleLines()
1114 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error; in ExecuteMultipleLines()
2470 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in LoadScriptingModule()
2471 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in LoadScriptingModule()
[all …]