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

/external/lldb/source/Target/
H A DThreadPlanCallUserExpression.cpp69 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); local
71 if (stop_info_sp)
78 stop_info_sp->SetDescription(s.GetData());
81 return stop_info_sp;
H A DThreadPlanBase.cpp84 StopInfoSP stop_info_sp = m_thread.GetStopInfo (); local
85 if (stop_info_sp)
87 bool should_notify = stop_info_sp->ShouldNotify(event_ptr);
105 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
106 if (stop_info_sp)
108 StopReason reason = stop_info_sp->GetStopReason ();
120 if (stop_info_sp->ShouldStopSynchronous(event_ptr))
134 if (stop_info_sp->ShouldNotify (event_ptr))
168 if (stop_info_sp->ShouldStop(event_ptr))
179 if (stop_info_sp
[all...]
H A DThreadPlanStepOverBreakpoint.cpp64 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
65 if (stop_info_sp)
67 StopReason reason = stop_info_sp->GetStopReason();
H A DThreadPlanStepUntil.cpp179 StopInfoSP stop_info_sp = GetPrivateStopInfo ();
183 if (stop_info_sp)
185 StopReason reason = stop_info_sp->GetStopReason();
192 BreakpointSiteSP this_site = m_thread.GetProcess()->GetBreakpointSiteList().FindByID (stop_info_sp->GetValue());
323 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
324 if (!stop_info_sp || stop_info_sp->GetStopReason() == eStopReasonNone)
H A DThreadPlanStepInstruction.cpp96 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
97 if (stop_info_sp)
99 StopReason reason = stop_info_sp->GetStopReason();
H A DThreadPlanStepThrough.cpp270 StopInfoSP stop_info_sp(m_thread.GetStopInfo());
271 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint)
273 break_id_t stop_value = (break_id_t) stop_info_sp->GetValue();
H A DThreadPlanStepOut.cpp203 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
204 if (stop_info_sp)
206 StopReason reason = stop_info_sp->GetStopReason();
212 BreakpointSiteSP site_sp (m_thread.GetProcess()->GetBreakpointSiteList().FindByID (stop_info_sp->GetValue()));
H A DThreadPlanStepOverRange.cpp303 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
306 if (stop_info_sp)
308 StopReason reason = stop_info_sp->GetStopReason();
316 if (NextRangeBreakpointExplainsStop(stop_info_sp))
H A DThreadPlanStepInRange.cpp420 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
421 if (stop_info_sp)
423 StopReason reason = stop_info_sp->GetStopReason();
428 if (NextRangeBreakpointExplainsStop(stop_info_sp))
H A DThreadPlanCallFunction.cpp587 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
590 m_cxx_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp))
592 m_objc_language_runtime->ExceptionBreakpointsExplainStop(stop_info_sp)))
602 stop_info_sp->OverrideShouldStop (true);
H A DThread.cpp433 lldb::StopInfoSP stop_info_sp (GetStopInfo ());
434 if (stop_info_sp)
435 return stop_info_sp->GetStopReason();
442 Thread::SetStopInfo (const lldb::StopInfoSP &stop_info_sp) argument
444 m_stop_info_sp = stop_info_sp;
460 log->Printf("%p: tid = 0x%" PRIx64 ": stop info = %s (stop_id = %u)\n", this, GetID(), stop_info_sp ? stop_info_sp->GetDescription() : "<NULL>", m_stop_info_stop_id);
496 saved_state.stop_info_sp = GetStopInfo();
515 if (saved_state.stop_info_sp)
516 saved_state.stop_info_sp
[all...]
H A DStackFrameList.cpp146 StopInfoSP stop_info_sp = m_thread.GetStopInfo(); local
147 if (stop_info_sp)
149 switch (stop_info_sp->GetStopReason())
168 uint32_t bp_site_id = stop_info_sp->GetValue();
H A DStopInfo.cpp1134 StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) argument
1136 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonPlanComplete)
1138 StopInfoThreadPlan *plan_stop_info = static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
H A DThreadPlanStepRange.cpp396 ThreadPlanStepRange::NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp) argument
402 break_id_t bp_site_id = stop_info_sp->GetValue();
H A DProcess.cpp4178 StopInfoSP stop_info_sp = thread_sp->GetStopInfo ();
4179 if (stop_info_sp && stop_info_sp->IsValid())
4183 if (stop_info_sp->GetOverrideShouldStop())
4185 this_thread_wants_to_stop = stop_info_sp->GetOverriddenShouldStopValue();
4189 stop_info_sp->PerformAction(event_ptr);
4196 if (stop_info_sp->HasTargetRunSinceMe())
4202 this_thread_wants_to_stop = stop_info_sp->ShouldStop(event_ptr);
5007 StopInfoSP stop_info_sp (thread_sp->GetStopInfo ());
5009 if (stop_info_sp)
[all...]
/external/lldb/source/API/
H A DSBThread.cpp144 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo (); local
145 if (stop_info_sp)
147 StopReason reason = stop_info_sp->GetStopReason();
161 break_id_t site_id = stop_info_sp->GetValue();
203 StopInfoSP stop_info_sp = thread->GetStopInfo (); local
204 if (stop_info_sp)
206 StopReason reason = stop_info_sp->GetStopReason();
220 break_id_t site_id = stop_info_sp->GetValue();
245 return stop_info_sp->GetValue();
248 return stop_info_sp
279 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo (); local
407 StopInfoSP stop_info_sp = exe_ctx.GetThreadPtr()->GetStopInfo (); local
[all...]
/external/lldb/include/lldb/Target/
H A DThreadPlanStepRange.h74 NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp);
H A DStopInfo.h169 GetReturnValueObject (lldb::StopInfoSP &stop_info_sp);
H A DThread.h204 lldb::StopInfoSP stop_info_sp; // You have to restore the stop info or you might continue with the wrong signals. member in struct:lldb_private::Thread::ThreadStateCheckpoint
963 SetStopInfo (const lldb::StopInfoSP &stop_info_sp);
1028 lldb::StopInfoSP stop_info_sp; member in struct:lldb_private::Thread::ThreadState
/external/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp379 StopInfoSP stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP)); local
380 return stop_info_sp;
/external/lldb/source/Core/
H A DDebugger.cpp1967 StopInfoSP stop_info_sp = thread->GetStopInfo (); local
1968 if (stop_info_sp && stop_info_sp->IsValid())
1970 cstr = stop_info_sp->GetDescription();
1980 StopInfoSP stop_info_sp = thread->GetStopInfo (); local
1981 if (stop_info_sp && stop_info_sp->IsValid())
1983 ValueObjectSP return_valobj_sp = StopInfo::GetReturnValueObject (stop_info_sp);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1692 lldb::StopInfoSP stop_info_sp (thread_sp->GetStopInfo ());
1693 if (stop_info_sp)
1695 stop_info_sp->SetDescription (description.c_str());
1860 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo(); local
1862 if (stop_info_sp)
1863 reason = stop_info_sp->GetStopReason();
1870 stop_info_sp->GetDescription());
1895 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo(); local
1897 if (stop_info_sp)
1898 reason = stop_info_sp
[all...]
/external/lldb/source/Commands/
H A DCommandObjectProcess.cpp817 StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo(); local
818 if (stop_info_sp && stop_info_sp->GetStopReason() == eStopReasonBreakpoint)
820 lldb::break_id_t bp_site_id = (lldb::break_id_t)stop_info_sp->GetValue();

Completed in 333 milliseconds