Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp267 lldb::IOHandlerSP io_handler_sp(ci.GetIOHandler()); in IOHandlerInputComplete() local
268 if (io_handler_sp) in IOHandlerInputComplete()
269 io_handler_sp->SetIsDone(true); in IOHandlerInputComplete()
283 lldb::IOHandlerSP io_handler_sp(ci.GetIOHandler()); in IOHandlerInputComplete() local
284 if (io_handler_sp) { in IOHandlerInputComplete()
285 io_handler_sp->SetIsDone(false); in IOHandlerInputComplete()
409 if (io_handler_sp) { in IOHandlerInputComplete()
410 io_handler_sp->SetIsDone(false); in IOHandlerInputComplete()
562 lldb::IOHandlerSP io_handler_sp(GetIOHandler()); in RunLoop() local
573 debugger.RunIOHandlerAsync(io_handler_sp); in RunLoop()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectGUI.cpp36 IOHandlerSP io_handler_sp(new IOHandlerCursesGUI(debugger)); in DoExecute() local
37 if (io_handler_sp) in DoExecute()
38 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
H A DCommandObjectExpression.cpp525 IOHandlerSP io_handler_sp( in GetMultilineExpression() local
534 StreamFileSP output_sp = io_handler_sp->GetOutputStreamFileSP(); in GetMultilineExpression()
540 debugger.RunIOHandlerAsync(io_handler_sp); in GetMultilineExpression()
626 IOHandlerSP io_handler_sp(repl_sp->GetIOHandler()); in DoExecute() local
627 io_handler_sp->SetIsDone(false); in DoExecute()
628 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
H A DCommandObjectCommands.cpp842 IOHandlerSP io_handler_sp(new IOHandlerEditline( in DoExecute() local
851 if (io_handler_sp) { in DoExecute()
852 debugger.RunIOHandlerAsync(io_handler_sp); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp205 IOHandlerSP io_handler_sp(new IOHandlerLuaInterpreter(m_debugger, *this)); in ExecuteInterpreterLoop() local
206 m_debugger.RunIOHandlerAsync(io_handler_sp); in ExecuteInterpreterLoop()
322 IOHandlerSP io_handler_sp( in CollectDataForBreakpointCommandCallback() local
324 io_handler_sp->SetUserData(&bp_options_vec); in CollectDataForBreakpointCommandCallback()
325 m_debugger.RunIOHandlerAsync(io_handler_sp); in CollectDataForBreakpointCommandCallback()
330 IOHandlerSP io_handler_sp( in CollectDataForWatchpointCommandCallback() local
332 io_handler_sp->SetUserData(wp_options); in CollectDataForWatchpointCommandCallback()
333 m_debugger.RunIOHandlerAsync(io_handler_sp); in CollectDataForWatchpointCommandCallback()
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1912 IOHandlerSP io_handler_sp(confirm); in Confirm() local
1913 m_debugger.RunIOHandlerSync(io_handler_sp); in Confirm()
2559 debugger.RunIOHandlerSync(io_handler_sp); in HandleCommandsFromFile()
2993 IOHandlerSP io_handler_sp( in GetLLDBCommandsFromIOHandler() local
3004 if (io_handler_sp) { in GetLLDBCommandsFromIOHandler()
3005 io_handler_sp->SetUserData(baton); in GetLLDBCommandsFromIOHandler()
3006 debugger.RunIOHandlerAsync(io_handler_sp); in GetLLDBCommandsFromIOHandler()
3013 IOHandlerSP io_handler_sp( in GetPythonCommandsFromIOHandler() local
3024 if (io_handler_sp) { in GetPythonCommandsFromIOHandler()
3025 io_handler_sp->SetUserData(baton); in GetPythonCommandsFromIOHandler()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h520 bool IsTop(const lldb::IOHandlerSP &io_handler_sp) const { in IsTop() argument
521 return m_top == io_handler_sp.get(); in IsTop()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4460 IOHandlerSP io_handler_sp(m_process_input_reader); in ProcessIOHandlerIsActive() local
4461 if (io_handler_sp) in ProcessIOHandlerIsActive()
4462 return GetTarget().GetDebugger().IsTopIOHandler(io_handler_sp); in ProcessIOHandlerIsActive()
4466 IOHandlerSP io_handler_sp(m_process_input_reader); in PushProcessIOHandler() local
4467 if (io_handler_sp) { in PushProcessIOHandler()
4471 io_handler_sp->SetIsDone(false); in PushProcessIOHandler()
4477 GetTarget().GetDebugger().RunIOHandlerAsync(io_handler_sp, in PushProcessIOHandler()
4485 IOHandlerSP io_handler_sp(m_process_input_reader); in PopProcessIOHandler() local
4486 if (io_handler_sp) in PopProcessIOHandler()
4487 return GetTarget().GetDebugger().RemoveIOHandler(io_handler_sp); in PopProcessIOHandler()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1046 IOHandlerSP io_handler_sp(new IOHandlerPythonInterpreter(debugger, this)); in ExecuteInterpreterLoop() local
1047 if (io_handler_sp) { in ExecuteInterpreterLoop()
1048 debugger.RunIOHandlerAsync(io_handler_sp); in ExecuteInterpreterLoop()