summaryrefslogtreecommitdiffstats
path: root/lldb/source/API/SBModule.cpp
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2011-10-12 02:08:07 +0000
committerSean Callanan <scallanan@apple.com>2011-10-12 02:08:07 +0000
commitb6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8 (patch)
tree81eda6ffe0a14872577ec166e33200a4f4a67814 /lldb/source/API/SBModule.cpp
parent88972243638da61c7807ef9715cc2ad10b80dd42 (diff)
downloadbcm5719-llvm-b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8.tar.gz
bcm5719-llvm-b6d70ebc0a37c6e1657cb1f17d8f67dabefbeda8.zip
Added ClangNamespaceDecl * parameters to several
core Module functions that the expression parser will soon be using. llvm-svn: 141766
Diffstat (limited to 'lldb/source/API/SBModule.cpp')
-rw-r--r--lldb/source/API/SBModule.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/lldb/source/API/SBModule.cpp b/lldb/source/API/SBModule.cpp
index 790d8ddca89..98bb195ca72 100644
--- a/lldb/source/API/SBModule.cpp
+++ b/lldb/source/API/SBModule.cpp
@@ -344,7 +344,8 @@ SBModule::FindFunctions (const char *name,
if (m_opaque_sp)
{
const bool symbols_ok = true;
- return m_opaque_sp->FindFunctions (ConstString(name),
+ return m_opaque_sp->FindFunctions (ConstString(name),
+ NULL,
name_type_mask,
symbols_ok,
append,
@@ -361,7 +362,8 @@ SBModule::FindGlobalVariables (SBTarget &target, const char *name, uint32_t max_
if (m_opaque_sp)
{
VariableList variable_list;
- const uint32_t match_count = m_opaque_sp->FindGlobalVariables (ConstString (name),
+ const uint32_t match_count = m_opaque_sp->FindGlobalVariables (ConstString (name),
+ NULL,
false,
max_matches,
variable_list);
@@ -398,6 +400,7 @@ SBModule::FindFirstType (const char* name_cstr)
num_matches = m_opaque_sp->FindTypes(sc,
name,
+ NULL,
false,
1,
type_list);
@@ -423,6 +426,7 @@ SBModule::FindTypes (const char* type)
num_matches = m_opaque_sp->FindTypes(sc,
name,
+ NULL,
false,
UINT32_MAX,
type_list);
OpenPOWER on IntegriCloud