/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleThreadPlanStepThroughObjCTrampoline.h | 42 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
|
D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 41 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/ |
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() 72 bool m_stop_others; variable
|
D | ThreadPlanRunToAddress.h | 55 bool m_stop_others;
|
D | ThreadPlanStepThrough.h | 54 bool m_stop_others; variable
|
D | ThreadPlanStepUntil.h | 51 bool m_stop_others; variable
|
D | ThreadPlanStepRange.h | 67 lldb::RunMode m_stop_others; variable
|
D | ThreadPlanStepOut.h | 61 bool m_stop_others; variable
|
D | Target.h | 327 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/ |
D | ThreadPlanRunToAddress.cpp | 26 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()
|
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()
|
D | ThreadPlanStepOut.cpp | 43 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()
|
D | ThreadPlanStepUntil.cpp | 35 m_until_points(), m_stop_others(stop_others) { in ThreadPlanStepUntil() 272 bool ThreadPlanStepUntil::StopOthers() { return m_stop_others; } in StopOthers()
|
D | ThreadPlanPython.cpp | 33 m_stop_others(false) { in ThreadPlanPython()
|
D | ThreadPlanStepRange.cpp | 39 m_stop_others(stop_others), m_stack_id(), m_parent_stack_id(), in ThreadPlanStepRange() 239 switch (m_stop_others) { in StopOthers()
|
D | ThreadPlanStepOverRange.cpp | 140 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
|
D | ThreadPlanStepInRange.cpp | 162 bool stop_others = (m_stop_others == lldb::eOnlyThisThread); in ShouldStop()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectThread.cpp | 850 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()
|