Home
last modified time | relevance | path

Searched refs:GetStopOthers (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBThreadPlan.i98 …docstring", "Return whether this plan will ask to stop other threads when it runs.") GetStopOthers;
100 GetStopOthers();
102 …e("docstring", "Set whether this plan will ask to stop other threads when it runs.") GetStopOthers;
H A DSBExpressionOptions.i81 GetStopOthers () const;
/llvm-project-15.0.7/lldb/source/API/
H A DSBExpressionOptions.cpp129 bool SBExpressionOptions::GetStopOthers() const { in GetStopOthers() function in SBExpressionOptions
132 return m_opaque_up->GetStopOthers(); in GetStopOthers()
H A DSBThreadPlan.cpp191 bool SBThreadPlan::GetStopOthers() { in GetStopOthers() function in SBThreadPlan
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBExpressionOptions.h61 bool GetStopOthers() const;
H A DSBThreadPlan.h81 bool GetStopOthers();
/llvm-project-15.0.7/lldb/source/Target/
H A DThreadPlanCallFunction.cpp102 m_valid(false), m_stop_other_threads(options.GetStopOthers()), in ThreadPlanCallFunction()
135 m_valid(false), m_stop_other_threads(options.GetStopOthers()), in ThreadPlanCallFunction()
H A DProcess.cpp4585 if (!options.GetStopOthers() || !options.GetTryAllThreads()) in GetExpressionTimeout()
4855 if (!options.GetStopOthers() || !options.GetTryAllThreads()) in RunThreadPlan()
4859 options.GetStopOthers(), options.GetTryAllThreads(), in RunThreadPlan()
/llvm-project-15.0.7/lldb/test/API/functionalities/step_scripted/
H A DSteps.py96 StepReportsStopOthers.stop_mode_dict[self.key] = self.thread_plan.GetStopOthers()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DTarget.h357 bool GetStopOthers() const { return m_stop_others; } in GetStopOthers() function