diff options
Diffstat (limited to 'lldb/scripts/Python/interface')
-rw-r--r-- | lldb/scripts/Python/interface/SBTarget.i | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/lldb/scripts/Python/interface/SBTarget.i b/lldb/scripts/Python/interface/SBTarget.i index 4de442e0b8b..345929a80dc 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -112,16 +112,6 @@ public: void SetDetachOnError(bool enable); - - lldb::SBValueList - FindGlobalVariables(const char *name, - uint32_t max_matches, - MatchType matchtype); - - lldb::SBSymbolContextList - FindGlobalFunctions(const char *name, - uint32_t max_matches, - MatchType matchtype); }; class SBAttachInfo @@ -672,6 +662,17 @@ public: lldb::SBValue FindFirstGlobalVariable (const char* name); + + lldb::SBValueList + FindGlobalVariables(const char *name, + uint32_t max_matches, + MatchType matchtype); + + lldb::SBSymbolContextList + FindGlobalFunctions(const char *name, + uint32_t max_matches, + MatchType matchtype); + void Clear (); |