diff options
| author | Jim Ingham <jingham@apple.com> | 2016-09-21 01:21:19 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2016-09-21 01:21:19 +0000 |
| commit | ff9a91ea98e2093887220cf08081036b638e92ef (patch) | |
| tree | 16a6cec1d52d049b618f62d87e1df0daf22c3c23 /lldb/scripts | |
| parent | 09aa01a6f86e348800d76d7e7008eba9b2d5803f (diff) | |
| download | bcm5719-llvm-ff9a91ea98e2093887220cf08081036b638e92ef.tar.gz bcm5719-llvm-ff9a91ea98e2093887220cf08081036b638e92ef.zip | |
Adds tests for breakpoint names, and a FindBreakpointsByName.
Also if you set a breakpoint with an invalid name, we'll
refuse to set the breakpoint rather than silently ignoring
the name.
llvm-svn: 282043
Diffstat (limited to 'lldb/scripts')
| -rw-r--r-- | lldb/scripts/interface/SBTarget.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBTarget.i b/lldb/scripts/interface/SBTarget.i index f490be56b81..6764d697319 100644 --- a/lldb/scripts/interface/SBTarget.i +++ b/lldb/scripts/interface/SBTarget.i @@ -708,6 +708,9 @@ public: lldb::SBBreakpoint FindBreakpointByID (break_id_t break_id); + + bool FindBreakpointsByName(const char *name, SBBreakpointList &bkpt_list); + bool EnableAllBreakpoints (); |

