Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDThreadPlanPython.cpp94 bool script_error; in ShouldStop() local
95 …_stop = script_interp->ScriptedThreadPlanShouldStop (m_implementation_sp, event_ptr, script_error); in ShouldStop()
96 if (script_error) in ShouldStop()
117 bool script_error; in DoPlanExplainsStop() local
118 …top = script_interp->ScriptedThreadPlanExplainsStop (m_implementation_sp, event_ptr, script_error); in DoPlanExplainsStop()
119 if (script_error) in DoPlanExplainsStop()
158 bool script_error; in GetPlanRunState() local
159 … run_state = script_interp->ScriptedThreadPlanGetRunState (m_implementation_sp, script_error); in GetPlanRunState()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Interpreter/
HDScriptInterpreter.h256 …edThreadPlanExplainsStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) in ScriptedThreadPlanExplainsStop() argument
258 script_error = true; in ScriptedThreadPlanExplainsStop()
263 …ptedThreadPlanShouldStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) in ScriptedThreadPlanShouldStop() argument
265 script_error = true; in ScriptedThreadPlanShouldStop()
270 ScriptedThreadPlanGetRunState(StructuredData::ObjectSP implementor_sp, bool &script_error) in ScriptedThreadPlanGetRunState() argument
272 script_error = true; in ScriptedThreadPlanGetRunState()
HDScriptInterpreterPython.h180 …anExplainsStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) override;
181 …PlanShouldStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) override;
182 …criptedThreadPlanGetRunState(StructuredData::ObjectSP implementor_sp, bool &script_error) override;
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDScriptInterpreterPython.cpp1679 …edThreadPlanExplainsStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) in ScriptedThreadPlanExplainsStop() argument
1688 …explains_stop = g_swig_call_thread_plan(generic->GetValue(), "explains_stop", event, script_error); in ScriptedThreadPlanExplainsStop()
1689 if (script_error) in ScriptedThreadPlanExplainsStop()
1696 …ptedThreadPlanShouldStop(StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) in ScriptedThreadPlanShouldStop() argument
1705 … should_stop = g_swig_call_thread_plan(generic->GetValue(), "should_stop", event, script_error); in ScriptedThreadPlanShouldStop()
1706 if (script_error) in ScriptedThreadPlanShouldStop()
1713 …rPython::ScriptedThreadPlanGetRunState(StructuredData::ObjectSP implementor_sp, bool &script_error) in ScriptedThreadPlanGetRunState() argument
1722 … should_step = g_swig_call_thread_plan(generic->GetValue(), "should_step", NULL, script_error); in ScriptedThreadPlanGetRunState()
1723 if (script_error) in ScriptedThreadPlanGetRunState()