Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
HDScriptedThreadPlanInterface.h24 virtual llvm::Expected<bool> ExplainsStop(Event *event) { return true; } in ExplainsStop() function
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
HDScriptedThreadPlanPythonInterface.h35 llvm::Expected<bool> ExplainsStop(Event *event) override;
HDScriptedThreadPlanPythonInterface.cpp39 ScriptedThreadPlanPythonInterface::ExplainsStop(Event *event) { in ExplainsStop() function in ScriptedThreadPlanPythonInterface
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
HDThreadPlanPython.cpp138 auto explains_stop_or_error = m_interface->ExplainsStop(event_ptr); in DoPlanExplainsStop()