Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.h42 bool StopOthers() override { return m_stop_others; } in StopOthers() function
88 bool StopOthers() override { return m_stop_others; } in StopOthers() function
/external/llvm-project/lldb/source/Target/
DThreadPlan.cpp102 bool ThreadPlan::StopOthers() { in StopOthers() function in ThreadPlan
105 return (prev_plan == nullptr) ? false : prev_plan->StopOthers(); in StopOthers()
133 StateAsCString(resume_state), StopOthers()); in WillResume()
DThreadPlanBase.cpp178 bool ThreadPlanBase::StopOthers() { return false; } in StopOthers() function in ThreadPlanBase
DThreadPlanStepOverBreakpoint.cpp113 bool ThreadPlanStepOverBreakpoint::StopOthers() { return true; } in StopOthers() function in ThreadPlanStepOverBreakpoint
DThreadList.cpp507 (*pos)->GetCurrentPlan()->StopOthers()) { in WillResume()
537 (!wants_solo_run || (*pos)->GetCurrentPlan()->StopOthers())) { in WillResume()
557 thread_sp->GetCurrentPlan()->StopOthers()) { in WillResume()
DThreadPlanStepInstruction.cpp236 bool ThreadPlanStepInstruction::StopOthers() { return m_stop_other_threads; } in StopOthers() function in ThreadPlanStepInstruction
DThreadPlanStepThrough.cpp211 bool ThreadPlanStepThrough::StopOthers() { return m_stop_others; } in StopOthers() function in ThreadPlanStepThrough
DThreadPlanRunToAddress.cpp161 bool ThreadPlanRunToAddress::StopOthers() { return m_stop_others; } in StopOthers() function in ThreadPlanRunToAddress
DThreadPlanStepUntil.cpp272 bool ThreadPlanStepUntil::StopOthers() { return m_stop_others; } in StopOthers() function in ThreadPlanStepUntil
DThreadPlanCallFunction.cpp359 bool ThreadPlanCallFunction::StopOthers() { return m_stop_other_threads; } in StopOthers() function in ThreadPlanCallFunction
DThreadPlanStepRange.cpp238 bool ThreadPlanStepRange::StopOthers() { in StopOthers() function in ThreadPlanStepRange
DThreadPlanStepOut.cpp387 bool ThreadPlanStepOut::StopOthers() { return m_stop_others; } in StopOthers() function in ThreadPlanStepOut
/external/llvm-project/lldb/include/lldb/Target/
DThreadPlanBase.h32 bool StopOthers() override;
DThreadPlanStepInstruction.h28 bool StopOthers() override;
DThreadPlanStepOverBreakpoint.h26 bool StopOthers() override;
DThreadPlanPython.h48 bool StopOthers() override { return m_stop_others; } in StopOthers() function
DThreadPlanRunToAddress.h38 bool StopOthers() override;
DThreadPlanStepThrough.h24 bool StopOthers() override;
DThreadPlanStepUntil.h24 bool StopOthers() override;
DThreadPlanStepRange.h34 bool StopOthers() override;
DThreadPlanCallFunction.h43 bool StopOthers() override;
DThreadPlanStepOut.h32 bool StopOthers() override;
DThreadPlan.h376 virtual bool StopOthers();
/external/llvm-project/lldb/source/API/
DSBThreadPlan.cpp204 return thread_plan_sp->StopOthers(); in GetStopOthers()