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

  /external/lldb/include/lldb/Target/
ThreadPlanBase.h 39 virtual Vote ShouldReportStop (Event *event_ptr);
ThreadPlanStepRange.h 40 virtual Vote ShouldReportStop (Event *event_ptr);
ThreadList.h 95 ShouldReportStop (Event *event_ptr);
ThreadPlanCallFunction.h 65 ShouldReportStop(Event *event_ptr);
ThreadPlan.h 208 // the first plan's job, and it would be convenient to tell that plan how it should respond to ShouldReportStop.
217 // by hand as part of expression evaluation. To suppress the running event return eVoteNo from ShouldReportStop,
221 // on how to respond to ShouldReportStop.
367 ShouldReportStop (Event *event_ptr);
Thread.h 294 ShouldReportStop (Event *event_ptr);
    [all...]
  /external/lldb/source/Target/
ThreadPlanBase.cpp 82 ThreadPlanBase::ShouldReportStop(Event *event_ptr)
ThreadPlan.cpp 96 ThreadPlan::ShouldReportStop (Event *event_ptr)
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));
ThreadPlanCallFunction.cpp 356 ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr)
361 return ThreadPlan::ShouldReportStop(event_ptr);
ThreadList.cpp 330 ThreadList::ShouldReportStop (Event *event_ptr)
348 const Vote vote = thread_sp->ShouldReportStop (event_ptr);
ThreadPlanStepRange.cpp 91 ThreadPlanStepRange::ShouldReportStop (Event *event_ptr)
97 log->Printf ("ThreadPlanStepRange::ShouldReportStop() returning vote %i\n", vote);
Thread.cpp 448 // If we are overriding the ShouldReportStop, do that here:
909 Thread::ShouldReportStop (Event* event_ptr)
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);
    [all...]
Process.cpp     [all...]

Completed in 79 milliseconds