HomeSort by relevance Sort by last modified time
    Searched refs:stop_info_sp (Results 1 - 23 of 23) sorted by null

  /external/lldb/source/Target/
ThreadPlanCallUserExpression.cpp 69 StopInfoSP stop_info_sp = ThreadPlanCallFunction::GetRealStopInfo(); local
71 if (stop_info_sp)
78 stop_info_sp->SetDescription(s.GetData());
81 return stop_info_sp;
ThreadPlanBase.cpp 84 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->ShouldNotify(event_ptr)
    [all...]
ThreadPlanStepOverBreakpoint.cpp 64 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
65 if (stop_info_sp)
67 StopReason reason = stop_info_sp->GetStopReason();
ThreadPlanStepUntil.cpp 179 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)
ThreadPlanStepInstruction.cpp 96 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
97 if (stop_info_sp)
99 StopReason reason = stop_info_sp->GetStopReason();
ThreadPlanStepThrough.cpp 270 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();
ThreadPlanStepOut.cpp 203 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()));
ThreadPlanStepOverRange.cpp 303 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
306 if (stop_info_sp)
308 StopReason reason = stop_info_sp->GetStopReason();
316 if (NextRangeBreakpointExplainsStop(stop_info_sp))
ThreadPlanStepInRange.cpp 420 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
421 if (stop_info_sp)
423 StopReason reason = stop_info_sp->GetStopReason();
428 if (NextRangeBreakpointExplainsStop(stop_info_sp))
ThreadPlanCallFunction.cpp 587 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);
Thread.cpp 433 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)
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->MakeStopInfoValid()
    [all...]
StackFrameList.cpp 146 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();
    [all...]
StopInfo.cpp     [all...]
ThreadPlanStepRange.cpp 396 ThreadPlanStepRange::NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp)
402 break_id_t bp_site_id = stop_info_sp->GetValue();
Process.cpp     [all...]
  /external/lldb/source/API/
SBThread.cpp 144 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->GetValue()
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/
ThreadPlanStepRange.h 74 NextRangeBreakpointExplainsStop (lldb::StopInfoSP stop_info_sp);
Thread.h 204 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
1028 lldb::StopInfoSP stop_info_sp; member in struct:lldb_private::Thread::ThreadState
    [all...]
StopInfo.h 169 GetReturnValueObject (lldb::StopInfoSP &stop_info_sp);
  /external/lldb/source/Plugins/OperatingSystem/Python/
OperatingSystemPython.cpp 379 StopInfoSP stop_info_sp; //(StopInfo::CreateStopReasonWithSignal (*thread, SIGSTOP)); local
380 return stop_info_sp;
  /external/lldb/source/Core/
Debugger.cpp 1967 StopInfoSP stop_info_sp = thread->GetStopInfo (); local
1980 StopInfoSP stop_info_sp = thread->GetStopInfo (); local
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 1860 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo(); local
1895 StopInfoSP stop_info_sp = thread_sp->GetPrivateStopInfo(); local
    [all...]
  /external/lldb/source/Commands/
CommandObjectProcess.cpp 817 StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo(); local
    [all...]

Completed in 568 milliseconds