Home
last modified time | relevance | path

Searched refs:m_stop_others (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanRunToAddress.cpp27 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
38 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
49 m_stop_others(stop_others), m_addresses(addresses), m_break_ids() { in ThreadPlanRunToAddress()
162 bool ThreadPlanRunToAddress::StopOthers() { return m_stop_others; } in StopOthers()
165 m_stop_others = new_value; in SetStopOthers()
H A DThreadPlanStepThrough.cpp35 m_stop_others(stop_others) { in ThreadPlanStepThrough()
84 m_sub_plan_sp = loader->GetStepThroughTrampolinePlan(thread, m_stop_others); in LookForPlanToStepThroughFromCurrentPC()
91 runtime->GetStepThroughTrampolinePlan(thread, m_stop_others); in LookForPlanToStepThroughFromCurrentPC()
211 bool ThreadPlanStepThrough::StopOthers() { return m_stop_others; } in StopOthers()
H A DThreadPlanStepOut.cpp44 m_return_addr(LLDB_INVALID_ADDRESS), m_stop_others(stop_others), in ThreadPlanStepOut()
388 bool ThreadPlanStepOut::StopOthers() { return m_stop_others; } in StopOthers()
469 m_stop_others ? lldb::eOnlyThisThread : lldb::eAllThreads; in QueueInlinedStepPlan()
H A DThreadPlanStepUntil.cpp36 m_until_points(), m_stop_others(stop_others) { in ThreadPlanStepUntil()
273 bool ThreadPlanStepUntil::StopOthers() { return m_stop_others; } in StopOthers()
H A DThreadPlanStepRange.cpp40 m_stop_others(stop_others), m_stack_id(), m_parent_stack_id(), in ThreadPlanStepRange()
241 switch (m_stop_others) { in StopOthers()
H A DThreadPlanPython.cpp35 m_stop_others(false) { in ThreadPlanPython()
H A DThreadPlanStepOverRange.cpp141 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
H A DThreadPlanStepInRange.cpp163 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanPython.h48 bool StopOthers() override { return m_stop_others; } in StopOthers()
50 void SetStopOthers(bool new_value) override { m_stop_others = new_value; } in SetStopOthers()
73 bool m_stop_others; variable
H A DThreadPlanRunToAddress.h55 bool m_stop_others;
H A DThreadPlanStepThrough.h54 bool m_stop_others; variable
H A DThreadPlanStepUntil.h51 bool m_stop_others; variable
H A DThreadPlanStepRange.h67 lldb::RunMode m_stop_others; variable
H A DThreadPlanStepOut.h61 bool m_stop_others; variable
H A DTarget.h378 bool GetStopOthers() const { return m_stop_others; } in GetStopOthers()
380 void SetStopOthers(bool stop_others = true) { m_stop_others = stop_others; }
464 bool m_stop_others = true; variable
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp833 m_stop_others = false; in SetOptionValue()
835 m_stop_others = true; in SetOptionValue()
847 m_stop_others = false; in OptionParsingStarting()
856 bool m_stop_others = false; member in CommandObjectThreadUntil::CommandOptions
1034 m_options.m_stop_others, m_options.m_frame_idx, new_plan_status); in DoExecute()