Searched refs:script_error (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A 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 …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 282 Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument 283 script_error = true; in ScriptedThreadPlanExplainsStop() 289 Event *event, bool &script_error) { in ScriptedThreadPlanShouldStop() argument 290 script_error = true; in ScriptedThreadPlanShouldStop() 296 bool &script_error) { in ScriptedThreadPlanIsStale() argument 297 script_error = true; in ScriptedThreadPlanIsStale() 303 bool &script_error) { in ScriptedThreadPlanGetRunState() argument 304 script_error = true; in ScriptedThreadPlanGetRunState()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPythonImpl.h | 88 bool &script_error) override; 91 Event *event, bool &script_error) override; 94 bool &script_error) override; 98 bool &script_error) override;
|
| H A D | ScriptInterpreterPython.cpp | 1881 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument 1890 generic->GetValue(), "explains_stop", event, script_error); in ScriptedThreadPlanExplainsStop() 1891 if (script_error) in ScriptedThreadPlanExplainsStop() 1907 generic->GetValue(), "should_stop", event, script_error); in ScriptedThreadPlanShouldStop() 1908 if (script_error) in ScriptedThreadPlanShouldStop() 1915 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanIsStale() argument 1924 nullptr, script_error); in ScriptedThreadPlanIsStale() 1925 if (script_error) in ScriptedThreadPlanIsStale() 1932 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanGetRunState() argument 1941 generic->GetValue(), "should_step", nullptr, script_error); in ScriptedThreadPlanGetRunState() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointOptions.cpp | 333 Status script_error; in CreateFromStructuredData() local 334 script_error = in CreateFromStructuredData() 336 if (script_error.Fail()) { in CreateFromStructuredData()
|