Searched refs:stop_reason (Results 1 - 17 of 17) sorted by last modified time

/external/lldb/examples/python/
H A Dperformance.py183 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
[all...]
/external/lldb/include/lldb/Target/
H A DLanguageRuntime.h70 ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason) argument
/external/lldb/scripts/Python/interface/
H A DSBThread.i265 __swig_getmethods__["stop_reason"] = GetStopReason
266 if _newclass: stop_reason = property(GetStopReason, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eStopReason") that represents the reason this thread stopped.''')
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp448 ItaniumABILanguageRuntime::ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason) argument
453 if (!stop_reason ||
454 stop_reason->GetStopReason() != eStopReasonBreakpoint)
457 uint64_t break_site_id = stop_reason->GetValue();
H A DItaniumABILanguageRuntime.h74 ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason);
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp365 AppleObjCRuntime::ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason) argument
370 if (!stop_reason ||
371 stop_reason->GetStopReason() != eStopReasonBreakpoint)
374 uint64_t break_site_id = stop_reason->GetValue();
H A DAppleObjCRuntime.h98 ExceptionBreakpointsExplainStop (lldb::StopInfoSP stop_reason);
/external/lldb/source/Target/
H A DProcess.cpp5008 StopReason stop_reason = eStopReasonInvalid;
5010 stop_reason = stop_info_sp->GetStopReason();
5015 if (stop_reason == eStopReasonPlanComplete)
5028 if (stop_reason == eStopReasonBreakpoint)
H A DThread.cpp561 // StopReason stop_reason = lldb::eStopReasonInvalid;
564 // stop_reason = stop_info_sp->GetStopReason();
565 // if (stop_reason == lldb::eStopReasonBreakpoint)
1974 StopReason stop_reason = m_stop_info_sp->GetStopReason(); local
1975 if (stop_reason == lldb::eStopReasonBreakpoint) {
H A DThreadPlanCallFunction.cpp380 StopReason stop_reason; local
382 stop_reason = eStopReasonNone;
384 stop_reason = m_real_stop_info_sp->GetStopReason();
386 log->Printf ("ThreadPlanCallFunction::PlanExplainsStop: Got stop reason - %s.", Thread::StopReasonAsCString(stop_reason));
388 if (stop_reason == eStopReasonBreakpoint && BreakpointsExplainStop())
396 if (stop_reason == eStopReasonBreakpoint)
/external/lldb/test/functionalities/exec/
H A DTestExec.py76 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/test/functionalities/inferior-assert/
H A DTestInferiorAssert.py73 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/test/functionalities/inferior-changed/
H A DTestInferiorChanged.py53 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/
H A DTestInferiorCrashing.py91 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-crashing/recursive-inferior/
H A DTestRecursiveInferior.py91 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/
H A Dlldbtest.py1622 def switch_to_thread_with_stop_reason(self, stop_reason):
1625 'stop_reason'. If no such thread exists, no select action is done.
1631 stop_reason_to_str(stop_reason))
/external/lldb/tools/lldb-perf/lib/
H A DTestCase.cpp182 StopReason stop_reason = thread.GetStopReason(); local
184 switch (stop_reason)

Completed in 3104 milliseconds