Home
last modified time | relevance | path

Searched refs:io_handler_sp (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectGUI.cpp35 IOHandlerSP io_handler_sp(new IOHandlerCursesGUI(debugger)); in DoExecute() local
36 if (io_handler_sp) in DoExecute()
37 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
H A DCommandObjectExpression.cpp556 IOHandlerSP io_handler_sp( in GetMultilineExpression() local
565 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
571 debugger.RunIOHandlerAsync(io_handler_sp); in GetMultilineExpression()
657 IOHandlerSP io_handler_sp(repl_sp->GetIOHandler()); in DoExecute() local
658 io_handler_sp->SetIsDone(false); in DoExecute()
659 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
H A DCommandObjectCommands.cpp884 IOHandlerSP io_handler_sp(new IOHandlerEditline( in DoExecute() local
893 if (io_handler_sp) { in DoExecute()
894 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp275 lldb::IOHandlerSP io_handler_sp(ci.GetIOHandler()); in IOHandlerInputComplete() local
276 if (io_handler_sp) in IOHandlerInputComplete()
277 io_handler_sp->SetIsDone(true); in IOHandlerInputComplete()
291 lldb::IOHandlerSP io_handler_sp(ci.GetIOHandler()); in IOHandlerInputComplete() local
292 if (io_handler_sp) { in IOHandlerInputComplete()
293 io_handler_sp->SetIsDone(false); in IOHandlerInputComplete()
420 if (io_handler_sp) { in IOHandlerInputComplete()
421 io_handler_sp->SetIsDone(false); in IOHandlerInputComplete()
571 lldb::IOHandlerSP io_handler_sp(GetIOHandler()); in RunLoop() local
582 debugger.RunIOHandlerAsync(io_handler_sp); in RunLoop()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp212 IOHandlerSP io_handler_sp(new IOHandlerLuaInterpreter(m_debugger, *this)); in ExecuteInterpreterLoop() local
213 m_debugger.RunIOHandlerAsync(io_handler_sp); in ExecuteInterpreterLoop()
328 IOHandlerSP io_handler_sp( in CollectDataForBreakpointCommandCallback() local
330 io_handler_sp->SetUserData(&bp_options_vec); in CollectDataForBreakpointCommandCallback()
331 m_debugger.RunIOHandlerAsync(io_handler_sp); in CollectDataForBreakpointCommandCallback()
336 IOHandlerSP io_handler_sp( in CollectDataForWatchpointCommandCallback() local
338 io_handler_sp->SetUserData(wp_options); in CollectDataForWatchpointCommandCallback()
339 m_debugger.RunIOHandlerAsync(io_handler_sp); in CollectDataForWatchpointCommandCallback()
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2146 IOHandlerSP io_handler_sp(confirm); in Confirm() local
2147 m_debugger.RunIOHandlerSync(io_handler_sp); in Confirm()
2809 debugger.RunIOHandlerSync(io_handler_sp); in HandleCommandsFromFile()
3277 IOHandlerSP io_handler_sp( in GetLLDBCommandsFromIOHandler() local
3287 if (io_handler_sp) { in GetLLDBCommandsFromIOHandler()
3288 io_handler_sp->SetUserData(baton); in GetLLDBCommandsFromIOHandler()
3289 debugger.RunIOHandlerAsync(io_handler_sp); in GetLLDBCommandsFromIOHandler()
3296 IOHandlerSP io_handler_sp( in GetPythonCommandsFromIOHandler() local
3306 if (io_handler_sp) { in GetPythonCommandsFromIOHandler()
3307 io_handler_sp->SetUserData(baton); in GetPythonCommandsFromIOHandler()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h510 bool IsTop(const lldb::IOHandlerSP &io_handler_sp) const { in IsTop() argument
511 return m_top == io_handler_sp.get(); in IsTop()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4555 IOHandlerSP io_handler_sp(m_process_input_reader); in ProcessIOHandlerIsActive() local
4556 if (io_handler_sp) in ProcessIOHandlerIsActive()
4557 return GetTarget().GetDebugger().IsTopIOHandler(io_handler_sp); in ProcessIOHandlerIsActive()
4563 IOHandlerSP io_handler_sp(m_process_input_reader); in PushProcessIOHandler() local
4564 if (io_handler_sp) { in PushProcessIOHandler()
4568 io_handler_sp->SetIsDone(false); in PushProcessIOHandler()
4574 GetTarget().GetDebugger().RunIOHandlerAsync(io_handler_sp, in PushProcessIOHandler()
4583 IOHandlerSP io_handler_sp(m_process_input_reader); in PopProcessIOHandler() local
4584 if (io_handler_sp) in PopProcessIOHandler()
4585 return GetTarget().GetDebugger().RemoveIOHandler(io_handler_sp); in PopProcessIOHandler()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp930 IOHandlerSP io_handler_sp(new IOHandlerPythonInterpreter(debugger, this)); in ExecuteInterpreterLoop() local
931 if (io_handler_sp) { in ExecuteInterpreterLoop()
932 debugger.RunIOHandlerAsync(io_handler_sp); in ExecuteInterpreterLoop()