Searched refs:script_error (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/lldb/source/Target/ |
D | ThreadPlanPython.cpp | 86 bool script_error; in ShouldStop() local 88 m_implementation_sp, event_ptr, script_error); in ShouldStop() 89 if (script_error) in ShouldStop() 105 bool script_error; in IsPlanStale() local 107 script_error); in IsPlanStale() 108 if (script_error) in IsPlanStale() 124 bool script_error; in DoPlanExplainsStop() local 126 m_implementation_sp, event_ptr, script_error); in DoPlanExplainsStop() 127 if (script_error) in DoPlanExplainsStop() 157 bool script_error; in GetPlanRunState() local [all …]
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | ScriptInterpreter.h | 255 Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument 256 script_error = true; in ScriptedThreadPlanExplainsStop() 262 Event *event, bool &script_error) { in ScriptedThreadPlanShouldStop() argument 263 script_error = true; in ScriptedThreadPlanShouldStop() 269 bool &script_error) { in ScriptedThreadPlanIsStale() argument 270 script_error = true; in ScriptedThreadPlanIsStale() 276 bool &script_error) { in ScriptedThreadPlanGetRunState() argument 277 script_error = true; in ScriptedThreadPlanGetRunState()
|
/external/llvm-project/debuginfo-tests/dexter/dex/tools/test/ |
D | Tool.py | 65 script_error = (' : {}'.format( 66 self.error.script_error.splitlines()[0]) if getattr( 70 str(self.error).splitlines()[0], script_error)
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | ScriptInterpreterPythonImpl.h | 85 bool &script_error) override; 88 Event *event, bool &script_error) override; 91 bool &script_error) override; 95 bool &script_error) override;
|
D | ScriptInterpreterPython.cpp | 1859 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument 1868 generic->GetValue(), "explains_stop", event, script_error); in ScriptedThreadPlanExplainsStop() 1869 if (script_error) in ScriptedThreadPlanExplainsStop() 1876 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { in ScriptedThreadPlanShouldStop() argument 1885 generic->GetValue(), "should_stop", event, script_error); in ScriptedThreadPlanShouldStop() 1886 if (script_error) in ScriptedThreadPlanShouldStop() 1893 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanIsStale() argument 1902 nullptr, script_error); in ScriptedThreadPlanIsStale() 1903 if (script_error) in ScriptedThreadPlanIsStale() 1910 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanGetRunState() argument [all …]
|
/external/llvm-project/debuginfo-tests/dexter/dex/utils/ |
D | Exceptions.py | 66 self.script_error = kwargs.pop('script_error', None)
|
/external/llvm-project/debuginfo-tests/dexter/dex/builder/ |
D | Builder.py | 89 script_error=err)
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointOptions.cpp | 333 Status script_error; in CreateFromStructuredData() local 334 script_error = in CreateFromStructuredData() 336 if (script_error.Fail()) { in CreateFromStructuredData()
|