diff options
| author | Jim Ingham <jingham@apple.com> | 2016-09-16 01:41:27 +0000 |
|---|---|---|
| committer | Jim Ingham <jingham@apple.com> | 2016-09-16 01:41:27 +0000 |
| commit | 6d1e4696a26965c780814f28340cc5eb1117e47d (patch) | |
| tree | 3301406ae99105667894b6efa972dbcae730cb66 /lldb/scripts/interface | |
| parent | 6c7a0bc3d964d4e0840f82db692e3b88c9eb1f33 (diff) | |
| download | bcm5719-llvm-6d1e4696a26965c780814f28340cc5eb1117e47d.tar.gz bcm5719-llvm-6d1e4696a26965c780814f28340cc5eb1117e47d.zip | |
First tests for serializing breakpoints.
Plus a few bug fixes I found along the way.
llvm-svn: 281690
Diffstat (limited to 'lldb/scripts/interface')
| -rw-r--r-- | lldb/scripts/interface/SBBreakpoint.i | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/scripts/interface/SBBreakpoint.i b/lldb/scripts/interface/SBBreakpoint.i index f36027722a3..9098c6ee72d 100644 --- a/lldb/scripts/interface/SBBreakpoint.i +++ b/lldb/scripts/interface/SBBreakpoint.i @@ -221,6 +221,9 @@ public: bool GetDescription (lldb::SBStream &description); + bool + GetDescription(lldb::SBStream &description, bool include_locations); + bool operator == (const lldb::SBBreakpoint& rhs); @@ -276,6 +279,9 @@ public: SBBreakpoint GetBreakpointAtIndex(size_t idx); + + SBBreakpoint + FindBreakpointByID(lldb::break_id_t); void Append(const SBBreakpoint &sb_bkpt); |

