Home
last modified time | relevance | path

Searched refs:IsOneShot (Results 1 – 12 of 12) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBBreakpoint.i128 IsOneShot ();
306 …one_shot = property(IsOneShot, SetOneShot, doc='''A read/write property that configures whether th…
H A DSBBreakpointName.i55 bool IsOneShot() const;
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_breakpointname.py14 obj.IsOneShot()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBBreakpointName.h54 bool IsOneShot() const;
H A DSBBreakpoint.h61 bool IsOneShot() const;
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/
H A DTestBreakpointNames.py184 self.assertTrue(not bkpt.IsOneShot(), "We applied one-shot to the wrong breakpoint.")
187 self.assertEqual(bp_object.IsOneShot(), self.is_one_shot, "IsOneShot")
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h288 bool IsOneShot() const { return m_one_shot; } in IsOneShot() function
H A DBreakpoint.h339 bool IsOneShot() const;
/llvm-project-15.0.7/lldb/source/API/
H A DSBBreakpointName.cpp256 bool SBBreakpointName::IsOneShot() const { in IsOneShot() function in SBBreakpointName
266 return bp_name->GetOptions().IsOneShot(); in IsOneShot()
H A DSBBreakpoint.cpp236 bool SBBreakpoint::IsOneShot() const { in IsOneShot() function in SBBreakpoint
243 return bkpt_sp->IsOneShot(); in IsOneShot()
/llvm-project-15.0.7/lldb/source/Target/
H A DStopInfo.cpp117 m_was_one_shot = bkpt.IsOneShot(); in StoreBPInfo()
552 bp_loc_sp->GetBreakpoint().IsOneShot()) { in PerformAction()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpoint.cpp331 bool Breakpoint::IsOneShot() const { return m_options.IsOneShot(); } in IsOneShot() function in Breakpoint