Searched refs:script_error (Results 1 – 5 of 5) sorted by relevance
/openbsd-src/gnu/llvm/lldb/source/Target/ |
H A D | ThreadPlanPython.cpp | 82 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 …]
|
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
H A D | ScriptInterpreter.h | 289 Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument 290 script_error = true; in ScriptedThreadPlanExplainsStop() 296 Event *event, bool &script_error) { in ScriptedThreadPlanShouldStop() argument 297 script_error = true; in ScriptedThreadPlanShouldStop() 303 bool &script_error) { in ScriptedThreadPlanIsStale() argument 304 script_error = true; in ScriptedThreadPlanIsStale() 310 bool &script_error) { in ScriptedThreadPlanGetRunState() argument 311 script_error = true; in ScriptedThreadPlanGetRunState()
|
/openbsd-src/gnu/llvm/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 | 1669 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { in ScriptedThreadPlanExplainsStop() argument 1678 generic->GetValue(), "explains_stop", event, script_error); in ScriptedThreadPlanExplainsStop() 1679 if (script_error) in ScriptedThreadPlanExplainsStop() 1686 StructuredData::ObjectSP implementor_sp, Event *event, bool &script_error) { in ScriptedThreadPlanShouldStop() argument 1695 generic->GetValue(), "should_stop", event, script_error); in ScriptedThreadPlanShouldStop() 1696 if (script_error) in ScriptedThreadPlanShouldStop() 1703 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanIsStale() argument 1712 nullptr, script_error); in ScriptedThreadPlanIsStale() 1713 if (script_error) in ScriptedThreadPlanIsStale() 1720 StructuredData::ObjectSP implementor_sp, bool &script_error) { in ScriptedThreadPlanGetRunState() argument [all …]
|
/openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
H A D | BreakpointOptions.cpp | 323 Status script_error; in CreateFromStructuredData() local 324 script_error = in CreateFromStructuredData() 326 if (script_error.Fail()) { in CreateFromStructuredData()
|