Searched refs:FindFunctions (Results 1 - 25 of 34) sorted by relevance

12

/external/lldb/test/python_api/default-constructor/
H A Dsb_module.py18 sc_list = obj.FindFunctions("my_func")
19 sc_list = obj.FindFunctions("my_func", lldb.eFunctionNameTypeAny)
H A Dsb_target.py23 sc_list = obj.FindFunctions("the_func")
24 sc_list = obj.FindFunctions("the_func", lldb.eFunctionNameTypeAny)
/external/lldb/include/lldb/Symbol/
H A DSymbolFile.h138 virtual uint32_t FindFunctions (const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) = 0;
139 virtual uint32_t FindFunctions (const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) = 0;
H A DSymbolVendor.h108 FindFunctions (const ConstString &name,
116 FindFunctions (const RegularExpression& regex,
/external/lldb/source/Core/
H A DAddressResolverName.cpp80 // FIXME: Right now we look at the module level, and call the module's "FindFunctions".
121 context.module_sp->FindFunctions (m_func_name,
137 context.module_sp->FindFunctions (m_regex,
H A DModule.cpp590 Module::FindFunctions (const ConstString &name, function in class:Module
619 symbols->FindFunctions(lookup_name,
660 symbols->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, append, sc_list);
676 Module::FindFunctions (const RegularExpression& regex, function in class:Module
690 symbols->FindFunctions(regex, include_inlines, append, sc_list);
H A DModuleList.cpp330 ModuleList::FindFunctions (const ConstString &name, function in class:ModuleList
356 (*pos)->FindFunctions (lookup_name,
393 (*pos)->FindFunctions (name, NULL, name_type_mask, include_symbols, include_inlines, true, sc_list);
/external/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.h97 FindFunctions(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
100 FindFunctions(const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
H A DSymbolFileSymtab.cpp342 SymbolFileSymtab::FindFunctions(const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileSymtab
345 "SymbolFileSymtab::FindFunctions (name = '%s')",
356 SymbolFileSymtab::FindFunctions(const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileSymtab
359 "SymbolFileSymtab::FindFunctions (regex = '%s')",
/external/chromium_org/tools/cygprofile/
H A Dsymbolize.py164 def FindFunctions(addr, unique_addrs, address_map): function
228 symbols = FindFunctions(call[3], unique_addrs, address_map)
237 symbols = FindFunctions(call[3], unique_addrs, address_map)
/external/lldb/include/lldb/API/
H A DSBModule.h156 FindFunctions (const char *name,
/external/lldb/source/Symbol/
H A DSymbolVendor.cpp307 SymbolVendor::FindFunctions(const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolVendor
314 return m_sym_file_ap->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, append, sc_list);
320 SymbolVendor::FindFunctions(const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolVendor
327 return m_sym_file_ap->FindFunctions(regex, include_inlines, append, sc_list);
/external/lldb/include/lldb/Core/
H A DModule.h312 FindFunctions (const ConstString &name,
343 FindFunctions (const RegularExpression& regex,
963 /// SymbolVendor::FindFunctions() or Symtab::FindFunctionSymbols()
967 /// SymbolVendor::FindFunctions() or Symtab::FindFunctionSymbols()
971 /// match results obtained from SymbolVendor::FindFunctions() or
H A DModuleList.h262 /// @see Module::FindFunctions ()
265 FindFunctions (const ConstString &name,
/external/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp38 = process->GetTarget().GetImages().FindFunctions (ConstString ("mmap"),
150 = process->GetTarget().GetImages().FindFunctions (ConstString ("munmap"),
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.h120 virtual uint32_t FindFunctions(const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
121 virtual uint32_t FindFunctions(const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
407 void FindFunctions(
412 void FindFunctions (
417 void FindFunctions (
H A DSymbolFileDWARFDebugMap.h85 virtual uint32_t FindFunctions (const lldb_private::ConstString &name, const lldb_private::ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
86 virtual uint32_t FindFunctions (const lldb_private::RegularExpression& regex, bool include_inlines, bool append, lldb_private::SymbolContextList& sc_list);
H A DSymbolFileDWARFDebugMap.cpp1085 SymbolFileDWARFDebugMap::FindFunctions(const ConstString &name, const ClangNamespaceDecl *namespace_decl, uint32_t name_type_mask, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileDWARFDebugMap
1088 "SymbolFileDWARFDebugMap::FindFunctions (name = %s)",
1102 if (oso_dwarf->FindFunctions(name, namespace_decl, name_type_mask, include_inlines, true, sc_list))
1113 SymbolFileDWARFDebugMap::FindFunctions (const RegularExpression& regex, bool include_inlines, bool append, SymbolContextList& sc_list) function in class:SymbolFileDWARFDebugMap
1116 "SymbolFileDWARFDebugMap::FindFunctions (regex = '%s')",
1131 if (oso_dwarf->FindFunctions(regex, include_inlines, true, sc_list))
/external/lldb/test/python_api/module_section/
H A DTestModuleAndSection.py96 exe_module.FindFunctions(None, 0)
/external/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp177 // FIXME: Right now we look at the module level, and call the module's "FindFunctions".
219 context.module_sp->FindFunctions (lookup.lookup_name,
236 context.module_sp->FindFunctions (m_regex,
/external/lldb/source/API/
H A DSBModule.cpp434 SBModule::FindFunctions (const char *name, function in class:SBModule
444 module_sp->FindFunctions (ConstString(name),
/external/lldb/scripts/Python/interface/
H A DSBModule.i216 ") FindFunctions;
218 FindFunctions (const char *name,
H A DSBTarget.i577 ") FindFunctions;
579 FindFunctions (const char *name,
/external/lldb/source/Commands/
H A DCommandObjectSource.cpp473 num_matches += matching_modules.FindFunctions (name, eFunctionNameTypeAuto, include_symbols, include_inlines, append, sc_list);
479 num_matches = target->GetImages().FindFunctions (name, eFunctionNameTypeAuto, include_symbols, include_inlines, append, sc_list);
/external/lldb/test/python_api/target/
H A DTestTargetAPI.py45 """Exercise SBTaget.FindFunctions() API."""
54 """Exercise SBTarget.FindFunctions() API."""
158 """Exercise SBTaget.FindFunctions() API."""
165 list = target.FindFunctions('c', lldb.eFunctionNameTypeAuto)

Completed in 3088 milliseconds

12