diff options
Diffstat (limited to 'include/lldb/API/SBBreakpoint.h')
-rw-r--r-- | include/lldb/API/SBBreakpoint.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/lldb/API/SBBreakpoint.h b/include/lldb/API/SBBreakpoint.h index 86d49c29a821..20a97a1fb5a0 100644 --- a/include/lldb/API/SBBreakpoint.h +++ b/include/lldb/API/SBBreakpoint.h @@ -123,6 +123,18 @@ public: SBError SetScriptCallbackBody (const char *script_body_text); + + bool + AddName (const char *new_name); + + void + RemoveName (const char *name_to_remove); + + bool + MatchesName (const char *name); + + void + GetNames (SBStringList &names); size_t GetNumResolvedLocations() const; |