Searched refs:StopOthers (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanBase.h32 bool StopOthers() override;
H A DThreadPlanStepInstruction.h28 bool StopOthers() override;
H A DThreadPlanStepOverBreakpoint.h26 bool StopOthers() override;
H A DThreadPlanPython.h48 bool StopOthers() override;
H A DThreadPlanRunToAddress.h38 bool StopOthers() override;
H A DThreadPlanStepThrough.h24 bool StopOthers() override;
H A DThreadPlanStepUntil.h24 bool StopOthers() override;
H A DThreadPlanStepRange.h34 bool StopOthers() override;
H A DThreadPlanCallFunction.h43 bool StopOthers() override;
H A DThreadPlanStepOut.h32 bool StopOthers() override;
H A DThreadPlan.h131 // Next the "StopOthers" method of all the threads are polled, and if one
137 // Note, the way StopOthers is implemented, the base class implementation just
140 // don't implement StopOthers, and the parent
426 virtual bool StopOthers();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h39 bool StopOthers() override { return m_stop_others; }
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlan.cpp88 bool ThreadPlan::StopOthers() { function in class:ThreadPlan
91 return (prev_plan == nullptr) ? false : prev_plan->StopOthers();
119 StateAsCString(resume_state), StopOthers());
H A DThreadPlanBase.cpp178 bool ThreadPlanBase::StopOthers() { return false; } function in class:ThreadPlanBase
H A DThreadPlanStepOverBreakpoint.cpp113 bool ThreadPlanStepOverBreakpoint::StopOthers() { return true; } function in class:ThreadPlanStepOverBreakpoint
H A DThreadPlanPython.cpp177 bool ThreadPlanPython::StopOthers() { function in class:ThreadPlanPython
H A DThreadPlanStepThrough.cpp213 bool ThreadPlanStepThrough::StopOthers() { return m_stop_others; } function in class:ThreadPlanStepThrough
H A DThreadPlanStepInstruction.cpp238 bool ThreadPlanStepInstruction::StopOthers() { return m_stop_other_threads; } function in class:ThreadPlanStepInstruction
H A DThreadList.cpp497 // "StopOthers" plans which would then get to be part of the who-gets-to-run
507 (*pos)->GetCurrentPlan()->StopOthers()) {
533 // others, only call setup on the threads that request StopOthers...
537 (!wants_solo_run || (*pos)->GetCurrentPlan()->StopOthers())) {
557 thread_sp->GetCurrentPlan()->StopOthers()) {
H A DThreadPlanRunToAddress.cpp162 bool ThreadPlanRunToAddress::StopOthers() { return m_stop_others; } function in class:ThreadPlanRunToAddress
H A DThreadPlanStepUntil.cpp276 bool ThreadPlanStepUntil::StopOthers() { return m_stop_others; } function in class:ThreadPlanStepUntil
H A DThreadPlanCallFunction.cpp363 bool ThreadPlanCallFunction::StopOthers() { return m_stop_other_threads; } function in class:ThreadPlanCallFunction
H A DThreadPlanStepRange.cpp240 bool ThreadPlanStepRange::StopOthers() { function in class:ThreadPlanStepRange
H A DThreadPlanStepOut.cpp392 bool ThreadPlanStepOut::StopOthers() { return m_stop_others; } function in class:ThreadPlanStepOut

Completed in 246 milliseconds