Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleThreadPlanStepThroughObjCTrampoline.h42 bool StopOthers() override { return m_stop_others; } in StopOthers()
72 bool m_stop_others; /// Whether we should stop other threads. variable
88 bool StopOthers() override { return m_stop_others; } in StopOthers()
110 bool m_stop_others; /// Whether we should stop other threads. variable
DAppleThreadPlanStepThroughObjCTrampoline.cpp41 m_stop_others(stop_others) {} in AppleThreadPlanStepThroughObjCTrampoline()
69 options.SetStopOthers(m_stop_others); in InitializeFunctionCaller()
160 abort_other_plans, &sc, first_insn, m_stop_others, eVoteNoOpinion, in ShouldStop()
182 GetThread(), target_so_addr, m_stop_others); in ShouldStop()
237 m_at_msg_send(false), m_stop_others(stop_others) { in AppleThreadPlanStepThroughDirectDispatch()
402 = objc_runtime->GetStepThroughTrampolinePlan(GetThread(), m_stop_others); in ShouldStop()
/external/llvm-project/lldb/include/lldb/Target/
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()
72 bool m_stop_others; variable
DThreadPlanRunToAddress.h55 bool m_stop_others;
DThreadPlanStepThrough.h54 bool m_stop_others; variable
DThreadPlanStepUntil.h51 bool m_stop_others; variable
DThreadPlanStepRange.h67 lldb::RunMode m_stop_others; variable
DThreadPlanStepOut.h61 bool m_stop_others; variable
DTarget.h327 bool GetStopOthers() const { return m_stop_others; } in GetStopOthers()
329 void SetStopOthers(bool stop_others = true) { m_stop_others = stop_others; }
411 bool m_stop_others = true; variable
/external/llvm-project/lldb/source/Target/
DThreadPlanRunToAddress.cpp26 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
37 m_stop_others(stop_others), m_addresses(), m_break_ids() { in ThreadPlanRunToAddress()
48 m_stop_others(stop_others), m_addresses(addresses), m_break_ids() { in ThreadPlanRunToAddress()
161 bool ThreadPlanRunToAddress::StopOthers() { return m_stop_others; } in StopOthers()
164 m_stop_others = new_value; in SetStopOthers()
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()
DThreadPlanStepOut.cpp43 m_return_addr(LLDB_INVALID_ADDRESS), m_stop_others(stop_others), in ThreadPlanStepOut()
387 bool ThreadPlanStepOut::StopOthers() { return m_stop_others; } in StopOthers()
468 m_stop_others ? lldb::eOnlyThisThread : lldb::eAllThreads; in QueueInlinedStepPlan()
DThreadPlanStepUntil.cpp35 m_until_points(), m_stop_others(stop_others) { in ThreadPlanStepUntil()
272 bool ThreadPlanStepUntil::StopOthers() { return m_stop_others; } in StopOthers()
DThreadPlanPython.cpp33 m_stop_others(false) { in ThreadPlanPython()
DThreadPlanStepRange.cpp39 m_stop_others(stop_others), m_stack_id(), m_parent_stack_id(), in ThreadPlanStepRange()
239 switch (m_stop_others) { in StopOthers()
DThreadPlanStepOverRange.cpp140 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
DThreadPlanStepInRange.cpp162 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
/external/llvm-project/lldb/source/Commands/
DCommandObjectThread.cpp850 m_stop_others = false; in SetOptionValue()
852 m_stop_others = true; in SetOptionValue()
864 m_stop_others = false; in OptionParsingStarting()
873 bool m_stop_others; member in CommandObjectThreadUntil::CommandOptions
1055 m_options.m_stop_others, m_options.m_frame_idx, new_plan_status); in DoExecute()