Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanPython.cpp82 bool script_error; in ShouldStop() local
84 m_implementation_sp, event_ptr, script_error); in ShouldStop()
85 if (script_error) in ShouldStop()
101 bool script_error; in IsPlanStale() local
103 script_error); in IsPlanStale()
104 if (script_error) in IsPlanStale()
120 bool script_error; in DoPlanExplainsStop() local
122 m_implementation_sp, event_ptr, script_error); in DoPlanExplainsStop()
123 if (script_error) in DoPlanExplainsStop()
153 bool script_error; in GetPlanRunState() local
[all …]
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h285 Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument
286 script_error = true; in ScriptedThreadPlanExplainsStop()
292 Event *event, bool &script_error) { in ScriptedThreadPlanShouldStop() argument
293 script_error = true; in ScriptedThreadPlanShouldStop()
299 bool &script_error) { in ScriptedThreadPlanIsStale() argument
300 script_error = true; in ScriptedThreadPlanIsStale()
306 bool &script_error) { in ScriptedThreadPlanGetRunState() argument
307 script_error = true; in ScriptedThreadPlanGetRunState()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h88 bool &script_error) override;
91 Event *event, bool &script_error) override;
94 bool &script_error) override;
98 bool &script_error) override;
H A DScriptInterpreterPython.cpp1758 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument
1767 generic->GetValue(), "explains_stop", event, script_error); in ScriptedThreadPlanExplainsStop()
1768 if (script_error) in ScriptedThreadPlanExplainsStop()
1784 generic->GetValue(), "should_stop", event, script_error); in ScriptedThreadPlanShouldStop()
1785 if (script_error) in ScriptedThreadPlanShouldStop()
1792 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanIsStale() argument
1801 nullptr, script_error); in ScriptedThreadPlanIsStale()
1802 if (script_error) in ScriptedThreadPlanIsStale()
1809 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanGetRunState() argument
1818 generic->GetValue(), "should_step", nullptr, script_error); in ScriptedThreadPlanGetRunState()
[all …]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/tools/test/
H A DTool.py65 script_error = (' : {}'.format(
66 self.error.script_error.splitlines()[0]) if getattr(
70 str(self.error).splitlines()[0], script_error)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/utils/
H A DExceptions.py74 self.script_error = kwargs.pop('script_error', None)
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/dex/builder/
H A DBuilder.py89 script_error=err)
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointOptions.cpp323 Status script_error; in CreateFromStructuredData() local
324 script_error = in CreateFromStructuredData()
326 if (script_error.Fail()) { in CreateFromStructuredData()