Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp136 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
137 ScriptInterpreterIORedirect::Create(bool enable_io, Debugger &debugger, in Create()
140 return std::unique_ptr<ScriptInterpreterIORedirect>( in Create()
141 new ScriptInterpreterIORedirect(debugger, result)); in Create()
153 return std::unique_ptr<ScriptInterpreterIORedirect>( in Create()
154 new ScriptInterpreterIORedirect(std::move(*nullin), std::move(*nullout))); in Create()
157 ScriptInterpreterIORedirect::ScriptInterpreterIORedirect( in ScriptInterpreterIORedirect() function in ScriptInterpreterIORedirect
165 ScriptInterpreterIORedirect::ScriptInterpreterIORedirect( in ScriptInterpreterIORedirect() function in ScriptInterpreterIORedirect
209 void ScriptInterpreterIORedirect::Flush() { in Flush()
216 ScriptInterpreterIORedirect::~ScriptInterpreterIORedirect() { in ~ScriptInterpreterIORedirect()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h96 class ScriptInterpreterIORedirect {
101 static llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>>
104 ~ScriptInterpreterIORedirect();
114 ScriptInterpreterIORedirect(std::unique_ptr<File> input,
116 ScriptInterpreterIORedirect(Debugger &debugger, CommandReturnObject *result);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp160 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteOneLine()
161 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteOneLine()
173 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error; in ExecuteOneLine()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp955 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteOneLine()
956 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteOneLine()
1080 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteOneLineWithReturn()
1081 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteOneLineWithReturn()
1089 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error; in ExecuteOneLineWithReturn()
1206 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in ExecuteMultipleLines()
1207 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in ExecuteMultipleLines()
1213 ScriptInterpreterIORedirect &io_redirect = **io_redirect_or_error; in ExecuteMultipleLines()
2777 llvm::Expected<std::unique_ptr<ScriptInterpreterIORedirect>> in LoadScriptingModule()
2778 io_redirect_or_error = ScriptInterpreterIORedirect::Create( in LoadScriptingModule()
[all …]