HomeSort by relevance Sort by last modified time
    Searched defs:stop_info_sp (Results 1 - 16 of 16) 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...]
ThreadPlanStepInstruction.cpp 96 StopInfoSP stop_info_sp = GetPrivateStopInfo (); local
97 if (stop_info_sp)
99 StopReason reason = stop_info_sp->GetStopReason();
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)
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))
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()));
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);
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))
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...]
  /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/include/lldb/Target/
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...]
  /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/source/Commands/
CommandObjectProcess.cpp 817 StopInfoSP stop_info_sp = sel_thread_sp->GetStopInfo(); local
    [all...]
  /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...]

Completed in 855 milliseconds