16 lines · plain
1%feature("docstring",2"Represents a breakpoint name registered in a given :py:class:`SBTarget`.3 4Breakpoint names provide a way to act on groups of breakpoints. When you add a5name to a group of breakpoints, you can then use the name in all the command6line lldb commands for that name. You can also configure the SBBreakpointName7options and those options will be propagated to any :py:class:`SBBreakpoint` s currently8using that name. Adding a name to a breakpoint will also apply any of the9set options to that breakpoint.10 11You can also set permissions on a breakpoint name to disable listing, deleting12and disabling breakpoints. That will disallow the given operation for breakpoints13except when the breakpoint is mentioned by ID. So for instance deleting all the14breakpoints won't delete breakpoints so marked."15) lldb::SBBreakpointName;16