From 205afe679855a4ce8149cdaa94d3f0868ce796dc Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Fri, 6 Feb 2015 21:38:51 +0000 Subject: Import LLDB as of upstream SVN r225923 (git 2b588ecd) This corresponds with the branchpoint for the 3.6 release. A number of files not required for the FreeBSD build have been removed. Sponsored by: DARPA, AFRL --- include/lldb/Core/ModuleList.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'include/lldb/Core/ModuleList.h') diff --git a/include/lldb/Core/ModuleList.h b/include/lldb/Core/ModuleList.h index c3074d4d65100..a46e212da9bbe 100644 --- a/include/lldb/Core/ModuleList.h +++ b/include/lldb/Core/ModuleList.h @@ -278,6 +278,16 @@ public: uint32_t name_type_mask, SymbolContextList& sc_list); + //------------------------------------------------------------------ + /// @see Module::FindFunctions () + //------------------------------------------------------------------ + size_t + FindFunctions(const RegularExpression &name, + bool include_symbols, + bool include_inlines, + bool append, + SymbolContextList& sc_list); + //------------------------------------------------------------------ /// Find global and static variables by name. /// @@ -586,6 +596,13 @@ public: return ModuleIterable(m_modules, GetMutex()); } + typedef AdaptedIterable ModuleIterableNoLocking; + ModuleIterableNoLocking + ModulesNoLocking () + { + return ModuleIterableNoLocking(m_modules); + } + }; } // namespace lldb_private -- cgit v1.2.3