/external/lldb/test/functionalities/inferior-changed/ |
D | TestInferiorChanged.py | 53 stop_reason = 'stop reason = EXC_BAD_ACCESS' 55 stop_reason = 'stop reason = invalid address' 60 stop_reason]) 64 substrs = [stop_reason, 74 stop_reason = 'EXC_BAD_ACCESS' 76 stop_reason = 'invalid address' 78 if stop_reason in self.res.GetOutput():
|
/external/lldb/test/functionalities/inferior-crashing/recursive-inferior/ |
D | TestRecursiveInferior.py | 91 stop_reason = 'stop reason = EXC_BAD_ACCESS' 93 stop_reason = 'stop reason = invalid address' 98 stop_reason]) 100 return stop_reason 114 stop_reason = self.check_stop_reason() 118 substrs = [stop_reason, 'main', 'argc', 'argv', 'recursive_function']) 122 substrs = [stop_reason, 185 stop_reason = self.check_stop_reason() 197 substrs = [stop_reason,
|
/external/lldb/test/functionalities/inferior-crashing/ |
D | TestInferiorCrashing.py | 91 stop_reason = 'stop reason = EXC_BAD_ACCESS' 93 stop_reason = 'stop reason = invalid address' 98 stop_reason]) 100 return stop_reason 114 stop_reason = self.check_stop_reason() 118 substrs = [stop_reason, 184 stop_reason = self.check_stop_reason() 198 substrs = [stop_reason,
|
/external/lldb/test/functionalities/inferior-assert/ |
D | TestInferiorAssert.py | 73 stop_reason = 'stop reason = signal SIGABRT' 78 stop_reason]) 80 return stop_reason 94 stop_reason = self.check_stop_reason() 98 substrs = [stop_reason, 'main', 'argc', 'argv']) 102 substrs = [stop_reason, 223 stop_reason = self.check_stop_reason() 242 substrs = [stop_reason,
|
/external/lldb/examples/python/ |
D | performance.py | 183 stop_reason = thread.GetStopReason() 186 if stop_reason == lldb.eStopReasonNone: 189 elif stop_reason == lldb.eStopReasonTrace: 193 elif stop_reason == lldb.eStopReasonPlanComplete: 197 elif stop_reason == lldb.eStopReasonThreadExiting: 200 elif stop_reason == lldb.eStopReasonExec: 203 elif stop_reason == lldb.eStopReasonInvalid: 206 elif stop_reason == lldb.eStopReasonException: 211 elif stop_reason == lldb.eStopReasonBreakpoint: 217 elif stop_reason == lldb.eStopReasonWatchpoint: [all …]
|
/external/lldb/test/functionalities/exec/ |
D | TestExec.py | 76 stop_reason = thread.GetStopReason() 78 self.assertTrue (stop_reason == lldb.eStopReasonBreakpoint, 92 stop_reason = thread.GetStopReason() 94 self.assertTrue (stop_reason == lldb.eStopReasonExec,
|
/external/lldb/source/Target/ |
D | ThreadPlanCallFunction.cpp | 380 StopReason stop_reason; in DoPlanExplainsStop() local 382 stop_reason = eStopReasonNone; in DoPlanExplainsStop() 384 stop_reason = m_real_stop_info_sp->GetStopReason(); in DoPlanExplainsStop() 386 …nCallFunction::PlanExplainsStop: Got stop reason - %s.", Thread::StopReasonAsCString(stop_reason)); in DoPlanExplainsStop() 388 if (stop_reason == eStopReasonBreakpoint && BreakpointsExplainStop()) in DoPlanExplainsStop() 396 if (stop_reason == eStopReasonBreakpoint) in DoPlanExplainsStop()
|
D | Thread.cpp | 1974 StopReason stop_reason = m_stop_info_sp->GetStopReason(); in IsStillAtLastBreakpointHit() local 1975 if (stop_reason == lldb::eStopReasonBreakpoint) { in IsStillAtLastBreakpointHit()
|
D | Process.cpp | 5008 StopReason stop_reason = eStopReasonInvalid; in RunThreadPlan() local 5010 stop_reason = stop_info_sp->GetStopReason(); in RunThreadPlan() 5015 if (stop_reason == eStopReasonPlanComplete) in RunThreadPlan() 5028 if (stop_reason == eStopReasonBreakpoint) in RunThreadPlan()
|
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
D | ItaniumABILanguageRuntime.cpp | 448 ItaniumABILanguageRuntime::ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason) in ExceptionBreakpointsExplainStop() argument 453 if (!stop_reason || in ExceptionBreakpointsExplainStop() 454 stop_reason->GetStopReason() != eStopReasonBreakpoint) in ExceptionBreakpointsExplainStop() 457 uint64_t break_site_id = stop_reason->GetValue(); in ExceptionBreakpointsExplainStop()
|
D | ItaniumABILanguageRuntime.h | 74 ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason);
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCRuntime.cpp | 365 AppleObjCRuntime::ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason) in ExceptionBreakpointsExplainStop() argument 370 if (!stop_reason || in ExceptionBreakpointsExplainStop() 371 stop_reason->GetStopReason() != eStopReasonBreakpoint) in ExceptionBreakpointsExplainStop() 374 uint64_t break_site_id = stop_reason->GetValue(); in ExceptionBreakpointsExplainStop()
|
D | AppleObjCRuntime.h | 98 ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason);
|
/external/lldb/tools/lldb-perf/lib/ |
D | TestCase.cpp | 182 StopReason stop_reason = thread.GetStopReason(); in Loop() local 184 switch (stop_reason) in Loop()
|
/external/lldb/include/lldb/Target/ |
D | LanguageRuntime.h | 70 ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason) in ExceptionBreakpointsExplainStop() argument
|
/external/lldb/scripts/Python/interface/ |
D | SBThread.i | 266 …if _newclass: stop_reason = property(GetStopReason, None, doc='''A read only property that returns…
|
/external/lldb/test/ |
D | lldbtest.py | 1622 def switch_to_thread_with_stop_reason(self, stop_reason): argument 1631 stop_reason_to_str(stop_reason))
|
/external/lldb/www/python_reference/ |
D | api-objects.txt | 3820 lldb.SBThread.stop_reason lldb.SBThread-class.html#stop_reason
|