diff options
author | Greg Clayton <gclayton@apple.com> | 2012-12-04 02:22:16 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2012-12-04 02:22:16 +0000 |
commit | e14e19253df64b750ced6da0948418f6c80da6c9 (patch) | |
tree | 1b41fd23856f63691ed4ec09cca23977dda7d446 /lldb/scripts/Python/interface/SBTarget.i | |
parent | 15a2860b09c55e2531b1e70b69d7dc56a05060e9 (diff) | |
download | llvm-e14e19253df64b750ced6da0948418f6c80da6c9.zip llvm-e14e19253df64b750ced6da0948418f6c80da6c9.tar.gz llvm-e14e19253df64b750ced6da0948418f6c80da6c9.tar.bz2 |
<rdar://problem/12750060>
Add the ability to get a symbol or symbols by name and type from a SBModule, and also the ability to get all symbols by name and type from SBTarget objects.
llvm-svn: 169205
Diffstat (limited to 'lldb/scripts/Python/interface/SBTarget.i')
-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 8a304ee..bc4c228 100644 --- a/lldb/scripts/Python/interface/SBTarget.i +++ b/lldb/scripts/Python/interface/SBTarget.i @@ -687,6 +687,9 @@ public: lldb::SBInstructionList GetInstructions (lldb::SBAddress base_addr, const void *buf, size_t size); + lldb::SBSymbolContextList + FindSymbols (const char *name, lldb::SymbolType type = eSymbolTypeAny); + bool GetDescription (lldb::SBStream &description, lldb::DescriptionLevel description_level); |