Searched defs:ShouldReportStop (Results 1 - 6 of 6) sorted by relevance

/external/lldb/source/Target/
H A DThreadPlanBase.cpp82 ThreadPlanBase::ShouldReportStop(Event *event_ptr) function in class:ThreadPlanBase
H A DThreadList.cpp330 ThreadList::ShouldReportStop (Event *event_ptr) function in class:ThreadList
348 const Vote vote = thread_sp->ShouldReportStop (event_ptr);
H A DThreadPlan.cpp96 ThreadPlan::ShouldReportStop (Event *event_ptr) function in class:ThreadPlan
105 Vote prev_vote = prev_plan->ShouldReportStop (event_ptr);
107 log->Printf ("ThreadPlan::ShouldReportStop() returning previous thread plan vote: %s",
113 log->Printf ("ThreadPlan::ShouldReportStop() returning vote: %s", GetVoteAsCString (m_stop_vote));
H A DThreadPlanCallFunction.cpp356 ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) function in class:ThreadPlanCallFunction
361 return ThreadPlan::ShouldReportStop(event_ptr);
H A DThreadPlanStepRange.cpp91 ThreadPlanStepRange::ShouldReportStop (Event *event_ptr) function in class:ThreadPlanStepRange
97 log->Printf ("ThreadPlanStepRange::ShouldReportStop() returning vote %i\n", vote);
H A DThread.cpp448 // If we are overriding the ShouldReportStop, do that here:
909 Thread::ShouldReportStop (Event* event_ptr) function in class:Thread
919 log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4" PRIx64 ": returning vote %i (state was suspended or invalid)", GetID(), eVoteNoOpinion);
926 log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4" PRIx64 ": returning vote %i (temporary state was suspended or invalid)", GetID(), eVoteNoOpinion);
933 log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4" PRIx64 ": returning vote %i (thread didn't stop for a reason.)", GetID(), eVoteNoOpinion);
941 log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4" PRIx64 ": returning vote for complete stack's back plan", GetID());
942 return m_completed_plan_stack.back()->ShouldReportStop (event_ptr);
952 thread_vote = plan_ptr->ShouldReportStop(event_ptr);
961 log->Printf ("Thread::ShouldReportStop() tid = 0x%4.4" PRIx64 ": returning vote %i for current plan", GetID(), thread_vote);

Completed in 341 milliseconds