Searched refs:m_stop_others (Results 1 – 16 of 16) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanRunToAddress.cpp | 27 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 D | ThreadPlanStepThrough.cpp | 35 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 D | ThreadPlanStepOut.cpp | 44 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 D | ThreadPlanStepUntil.cpp | 36 m_until_points(), m_stop_others(stop_others) { in ThreadPlanStepUntil() 273 bool ThreadPlanStepUntil::StopOthers() { return m_stop_others; } in StopOthers()
|
H A D | ThreadPlanStepRange.cpp | 40 m_stop_others(stop_others), m_stack_id(), m_parent_stack_id(), in ThreadPlanStepRange() 241 switch (m_stop_others) { in StopOthers()
|
H A D | ThreadPlanPython.cpp | 35 m_stop_others(false) { in ThreadPlanPython()
|
H A D | ThreadPlanStepOverRange.cpp | 141 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
|
H A D | ThreadPlanStepInRange.cpp | 163 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | ThreadPlanPython.h | 48 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 D | ThreadPlanRunToAddress.h | 55 bool m_stop_others;
|
H A D | ThreadPlanStepThrough.h | 54 bool m_stop_others; variable
|
H A D | ThreadPlanStepUntil.h | 51 bool m_stop_others; variable
|
H A D | ThreadPlanStepRange.h | 67 lldb::RunMode m_stop_others; variable
|
H A D | ThreadPlanStepOut.h | 61 bool m_stop_others; variable
|
H A D | Target.h | 378 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 D | CommandObjectThread.cpp | 833 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()
|