Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
H A DScriptedThreadPlanInterface.h24 virtual llvm::Expected<bool> ExplainsStop(Event *event) { return true; } in ExplainsStop() function
/src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedThreadPlanPythonInterface.h35 llvm::Expected<bool> ExplainsStop(Event *event) override;
H A DScriptedThreadPlanPythonInterface.cpp39 ScriptedThreadPlanPythonInterface::ExplainsStop(Event *event) { in ExplainsStop() function in ScriptedThreadPlanPythonInterface
/src/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp138 auto explains_stop_or_error = m_interface->ExplainsStop(event_ptr); in DoPlanExplainsStop()