Searched refs:stop_info_sp (Results 1 - 25 of 25) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanBase.cpp61 StopInfoSP stop_info_sp = m_thread.GetStopInfo(); local
62 if (stop_info_sp) {
63 bool should_notify = stop_info_sp->ShouldNotify(event_ptr);
78 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
79 if (stop_info_sp) {
80 StopReason reason = stop_info_sp->GetStopReason();
91 if (stop_info_sp->ShouldStopSynchronous(event_ptr)) {
108 if (stop_info_sp->ShouldNotify(event_ptr)) {
129 m_thread.GetID(), stop_info_sp->GetDescription());
147 if (stop_info_sp
[all...]
H A DThreadPlanCallUserExpression.cpp100 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); local
102 if (stop_info_sp) {
109 stop_info_sp->SetDescription(s.GetData());
112 return stop_info_sp;
H A DThreadPlanStepUntil.cpp150 StopInfoSP stop_info_sp = GetPrivateStopInfo();
154 if (stop_info_sp) {
155 StopReason reason = stop_info_sp->GetStopReason();
162 stop_info_sp->GetValue());
268 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
269 if (!stop_info_sp || stop_info_sp->GetStopReason() == eStopReasonNone)
H A DThreadPlanStepOverBreakpoint.cpp50 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
51 if (stop_info_sp) {
62 StopReason reason = stop_info_sp->GetStopReason();
H A DThreadPlanStepThrough.cpp247 StopInfoSP stop_info_sp(m_thread.GetStopInfo());
248 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
249 break_id_t stop_value = (break_id_t)stop_info_sp->GetValue();
H A DThreadPlanStepInstruction.cpp88 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
89 if (stop_info_sp) {
90 StopReason reason = stop_info_sp->GetStopReason();
H A DThreadPlanStepOverRange.cpp341 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
344 if (stop_info_sp) {
345 StopReason reason = stop_info_sp->GetStopReason();
350 return_value = NextRangeBreakpointExplainsStop(stop_info_sp);
H A DThreadPlanCallFunction.cpp431 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
436 stop_info_sp)) ||
439 stop_info_sp))) {
449 stop_info_sp->OverrideShouldStop(true);
H A DThreadPlanStepInRange.cpp461 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
462 if (stop_info_sp) {
463 StopReason reason = stop_info_sp->GetStopReason();
466 if (NextRangeBreakpointExplainsStop(stop_info_sp)) {
H A DStopInfo.cpp1140 ValueObjectSP StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) { argument
1141 if (stop_info_sp &&
1142 stop_info_sp->GetStopReason() == eStopReasonPlanComplete) {
1144 static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
1150 ExpressionVariableSP StopInfo::GetExpressionVariable(StopInfoSP &stop_info_sp) { argument
1151 if (stop_info_sp &&
1152 stop_info_sp->GetStopReason() == eStopReasonPlanComplete) {
1154 static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
1161 StopInfo::GetCrashingDereference(StopInfoSP &stop_info_sp, argument
1163 if (!stop_info_sp) {
[all...]
H A DThreadPlanStepOut.cpp292 StopInfoSP stop_info_sp = GetPrivateStopInfo(); local
293 if (stop_info_sp) {
294 StopReason reason = stop_info_sp->GetStopReason();
300 stop_info_sp->GetValue()));
H A DThread.cpp441 lldb::StopInfoSP stop_info_sp(GetStopInfo());
442 if (stop_info_sp)
443 return stop_info_sp->GetStopReason();
462 void Thread::SetStopInfo(const lldb::StopInfoSP &stop_info_sp) { argument
463 m_stop_info_sp = stop_info_sp;
480 stop_info_sp ? stop_info_sp->GetDescription() : "<NULL>",
522 saved_state.stop_info_sp = GetStopInfo();
556 if (saved_state.stop_info_sp)
557 saved_state.stop_info_sp
[all...]
H A DThreadPlanStepRange.cpp397 lldb::StopInfoSP stop_info_sp) {
402 break_id_t bp_site_id = stop_info_sp->GetValue();
396 NextRangeBreakpointExplainsStop( lldb::StopInfoSP stop_info_sp) argument
H A DStackFrameList.cpp127 StopInfoSP stop_info_sp = m_thread.GetStopInfo();
128 if (!stop_info_sp)
130 switch (stop_info_sp->GetStopReason()) {
148 uint32_t bp_site_id = stop_info_sp->GetValue();
H A DProcess.cpp3986 StopInfoSP stop_info_sp = thread_sp->GetStopInfo();
3987 if (stop_info_sp && stop_info_sp->IsValid()) {
3990 if (stop_info_sp->GetOverrideShouldStop()) {
3992 stop_info_sp->GetOverriddenShouldStopValue();
3994 stop_info_sp->PerformAction(event_ptr);
4002 if (stop_info_sp->HasTargetRunSinceMe()) {
4007 this_thread_wants_to_stop = stop_info_sp->ShouldStop(event_ptr);
4572 StopInfoSP stop_info_sp = thread.GetStopInfo();
4573 if (stop_info_sp
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h133 GetReturnValueObject(lldb::StopInfoSP &stop_info_sp);
136 GetExpressionVariable(lldb::StopInfoSP &stop_info_sp);
139 GetCrashingDereference(lldb::StopInfoSP &stop_info_sp,
H A DThreadPlanStepRange.h63 bool NextRangeBreakpointExplainsStop(lldb::StopInfoSP stop_info_sp);
H A DThread.h120 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you member in struct:lldb_private::Thread::ThreadStateCheckpoint
1143 void SetStopInfo(const lldb::StopInfoSP &stop_info_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp165 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); local
166 if (stop_info_sp) {
167 StopReason reason = stop_info_sp->GetStopReason();
180 break_id_t site_id = stop_info_sp->GetValue();
216 StopInfoSP stop_info_sp = thread->GetStopInfo(); local
217 if (stop_info_sp) {
218 StopReason reason = stop_info_sp->GetStopReason();
231 break_id_t site_id = stop_info_sp->GetValue();
253 return stop_info_sp->GetValue();
256 return stop_info_sp
326 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); local
422 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp371 stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP)); local
372 return stop_info_sp;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp1278 StopInfoSP stop_info_sp = thread->GetStopInfo(); local
1279 if (stop_info_sp && stop_info_sp->IsValid()) {
1280 const char *cstr = stop_info_sp->GetDescription();
1294 StopInfoSP stop_info_sp = thread->GetStopInfo(); local
1295 if (stop_info_sp && stop_info_sp->IsValid()) {
1297 StopInfo::GetReturnValueObject(stop_info_sp);
1311 StopInfoSP stop_info_sp = thread->GetStopInfo(); local
1312 if (stop_info_sp
[all...]
H A DIOHandlerCursesGUI.cpp3488 StopInfoSP stop_info_sp; variable
3490 stop_info_sp = thread->GetStopInfo();
3491 if (stop_info_sp) {
3492 const char *stop_description = stop_info_sp->GetDescription();
3635 StopInfoSP stop_info_sp; variable
3637 stop_info_sp = thread->GetStopInfo();
3638 if (stop_info_sp) {
3639 const char *stop_description = stop_info_sp->GetDescription();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp565 StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo(); variable
566 if (stop_info_sp &&
567 stop_info_sp->GetStopReason() == eStopReasonBreakpoint) {
569 (lldb::break_id_t)stop_info_sp->GetValue();
H A DCommandObjectFrame.cpp153 StopInfoSP stop_info_sp = thread->GetStopInfo(); variable
154 if (!stop_info_sp) {
160 valobj_sp = StopInfo::GetCrashingDereference(stop_info_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1964 lldb::StopInfoSP stop_info_sp(thread_sp->GetStopInfo());
1965 if (stop_info_sp) {
1966 const char *stop_info_desc = stop_info_sp->GetDescription();
1968 stop_info_sp->SetDescription(description.c_str());
2490 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo();
2492 if (stop_info_sp)
2493 reason = stop_info_sp->GetStopReason();
2500 stop_info_sp->GetDescription());
2526 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo();
2528 if (stop_info_sp)
[all...]

Completed in 420 milliseconds