diff options
author | Jim Ingham <jingham@apple.com> | 2015-02-12 17:37:46 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2015-02-12 17:37:46 +0000 |
commit | e732052f1661e9760827c18093169cf137c89850 (patch) | |
tree | 037a145205736729149f7791e98f6734db37e4c3 /lldb/scripts/Python/interface | |
parent | 29786d4c161e6fd458fb2f1abc58a9f3401ee7f7 (diff) | |
download | bcm5719-llvm-e732052f1661e9760827c18093169cf137c89850.tar.gz bcm5719-llvm-e732052f1661e9760827c18093169cf137c89850.zip |
Add an -A option to "break set -p" to search all files for matches. Also add the version of
SBTarget::BreakpointCreateBySourceRegex that takes file spec lists to the Python interface,
and add a test for this.
<rdar://problem/19805037>
llvm-svn: 228938
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index 7a41a79d656..816145d2107 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -695,6 +695,9 @@ public: BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpec &source_file, const char *module_name = NULL); lldb::SBBreakpoint + BreakpointCreateBySourceRegex (const char *source_regex, const lldb::SBFileSpecList &module_list, const lldb::SBFileSpecList &file_list); + + lldb::SBBreakpoint BreakpointCreateForException (lldb::LanguageType language, bool catch_bp, bool throw_bp); |