Searched refs:vote (Results 1 - 5 of 5) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadList.h141 void SetShouldReportStop(Vote vote);
H A DThread.h1147 void SetShouldReportStop(Vote vote);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadList.cpp369 // stopping, a YES vote wins over everything. A NO vote wins over NO
373 const Vote vote = thread_sp->ShouldReportStop(event_ptr); local
374 switch (vote) {
388 thread_sp->GetID(), vote, result);
397 void ThreadList::SetShouldReportStop(Vote vote) { argument
404 thread_sp->SetShouldReportStop(vote);
417 // rule is NO vote wins over everything, a YES vote wins over no opinion.
H A DThreadPlanStepRange.cpp70 const Vote vote = IsPlanComplete() ? eVoteYes : eVoteNo; local
71 LLDB_LOGF(log, "ThreadPlanStepRange::ShouldReportStop() returning vote %i\n",
72 vote);
73 return vote;
H A DThread.cpp484 void Thread::SetShouldReportStop(Vote vote) { argument
485 if (vote == eVoteNoOpinion)
488 m_override_should_notify = (vote == eVoteYes ? eLazyBoolYes : eLazyBoolNo);
928 ": returning vote %i (state was suspended or invalid)",
937 ": returning vote %i (temporary state was suspended or invalid)",
945 ": returning vote %i (thread didn't stop for a reason.)",
954 ": returning vote for complete stack's back plan",
972 ": returning vote %i for current plan",

Completed in 68 milliseconds