Home
last modified time | relevance | path

Searched refs:FindFunctions (Results 1 – 25 of 37) sorted by relevance

12

/freebsd-src/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h311 void FindFunctions(const LookupInfo &lookup_info,
334 void FindFunctions(ConstString name,
341 void FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx,
358 void FindFunctions(const RegularExpression &regex,
H A DModuleList.h285 /// \see Module::FindFunctions ()
286 void FindFunctions(ConstString name, lldb::FunctionNameType name_type_mask,
295 /// \see Module::FindFunctions ()
296 void FindFunctions(const RegularExpression &name,
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp49 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap()
146 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
/freebsd-src/contrib/llvm-project/lldb/bindings/interface/
H A DSBModuleDocstrings.i151 ) lldb::SBModule::FindFunctions;
H A DSBTargetDocstrings.i284 ) lldb::SBTarget::FindFunctions;
/freebsd-src/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp357 void SymbolFileOnDemand::FindFunctions(const RegularExpression &regex, in FindFunctions() function in SymbolFileOnDemand
384 return m_sym_file_impl->FindFunctions(regex, include_inlines, sc_list); in FindFunctions()
387 void SymbolFileOnDemand::FindFunctions( in FindFunctions() function in SymbolFileOnDemand
417 return m_sym_file_impl->FindFunctions(lookup_info, parent_decl_ctx, in FindFunctions()
H A DSymbolFile.cpp124 void SymbolFile::FindFunctions(const Module::LookupInfo &lookup_info, in FindFunctions() function in SymbolFile
129 void SymbolFile::FindFunctions(const RegularExpression &regex, in FindFunctions() function in SymbolFile
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.h114 void FindFunctions(const Module::LookupInfo &lookup_info,
118 void FindFunctions(const RegularExpression &regex, bool include_inlines,
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.h114 void FindFunctions(const lldb_private::Module::LookupInfo &lookup_info,
119 void FindFunctions(const lldb_private::RegularExpression &regex,
/freebsd-src/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp824 void Module::FindFunctions(const Module::LookupInfo &lookup_info, in FindFunctions() function in Module
830 symbols->FindFunctions(lookup_info, parent_decl_ctx, in FindFunctions()
843 void Module::FindFunctions(ConstString name, in FindFunctions() function in Module
850 FindFunctions(lookup_info, parent_decl_ctx, options, sc_list); in FindFunctions()
858 void Module::FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx, in FindFunctions() function in Module
867 FindFunctions(name, CompilerDeclContext(), name_type_mask, options, in FindFunctions()
875 void Module::FindFunctions(const RegularExpression &regex, in FindFunctions() function in Module
881 symbols->FindFunctions(regex, options.include_inlines, sc_list); in FindFunctions()
H A DModuleList.cpp441 void ModuleList::FindFunctions(ConstString name, in FindFunctions()
452 module_sp->FindFunctions(lookup_info, CompilerDeclContext(), options, in FindFunctions()
463 module_sp->FindFunctions(name, CompilerDeclContext(), name_type_mask,
495 void ModuleList::FindFunctions(const RegularExpression &name, in FindFunctions()
500 module_sp->FindFunctions(name, options, sc_list); in FindCompileUnits()
436 void ModuleList::FindFunctions(ConstString name, FindFunctions() function in ModuleList
490 void ModuleList::FindFunctions(const RegularExpression &name, FindFunctions() function in ModuleList
/freebsd-src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h142 void FindFunctions(const lldb_private::Module::LookupInfo &lookup_info,
147 void FindFunctions(const lldb_private::RegularExpression &regex,
H A DSymbolFile.h299 virtual void FindFunctions(const Module::LookupInfo &lookup_info,
302 virtual void FindFunctions(const RegularExpression &regex,
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.h123 void FindFunctions(const lldb_private::Module::LookupInfo &lookup_info,
128 void FindFunctions(const lldb_private::RegularExpression &regex,
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h134 void FindFunctions(const Module::LookupInfo &lookup_info,
138 void FindFunctions(const RegularExpression &regex, bool include_inlines,
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h117 void FindFunctions(const Module::LookupInfo &lookup_info,
120 void FindFunctions(const RegularExpression &regex, bool include_inlines,
H A DSymbolFileDWARF.h178 void FindFunctions(const Module::LookupInfo &lookup_info,
182 void FindFunctions(const RegularExpression &regex, bool include_inlines,
H A DSymbolFileDWARFDebugMap.cpp1075 void SymbolFileDWARFDebugMap::FindFunctions( in FindFunctions()
1080 LLDB_SCOPED_TIMERF("SymbolFileDWARFDebugMap::FindFunctions (name = %s)", in FindFunctions()
1085 oso_dwarf->FindFunctions(lookup_info, parent_decl_ctx, include_inlines,
1095 void SymbolFileDWARFDebugMap::FindFunctions(const RegularExpression &regex, in FindFunctions()
1099 LLDB_SCOPED_TIMERF("SymbolFileDWARFDebugMap::FindFunctions (regex = '%s')", in FindFunctions()
1105 oso_dwarf->FindFunctions(regex, include_inlines, sc_list); in GetTypes()
1066 void SymbolFileDWARFDebugMap::FindFunctions( FindFunctions() function in SymbolFileDWARFDebugMap
1086 void SymbolFileDWARFDebugMap::FindFunctions(const RegularExpression &regex, FindFunctions() function in SymbolFileDWARFDebugMap
/freebsd-src/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModule.h169 FindFunctions(const char *name,
/freebsd-src/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp275 context.module_sp->FindFunctions(lookup, CompilerDeclContext(), in SearchCallback()
287 context.module_sp->FindFunctions(m_regex, function_options, func_list); in SearchCallback()
/freebsd-src/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp386 lldb::SBSymbolContextList SBModule::FindFunctions(const char *name, in FindFunctions() function in SBModule
398 module_sp->FindFunctions(ConstString(name), CompilerDeclContext(), type, in FindFunctions()
H A DSBTarget.cpp1750 lldb::SBSymbolContextList SBTarget::FindFunctions(const char *name, in FindFunctions()
1767 target_sp->GetImages().FindFunctions(ConstString(name), mask, in FindGlobalFunctions()
1789 target_sp->GetImages().FindFunctions(RegularExpression(name_ref), in FindGlobalFunctions()
1793 target_sp->GetImages().FindFunctions( in FindGlobalFunctions()
1799 target_sp->GetImages().FindFunctions(RegularExpression(regexstr), in FindGlobalFunctions()
1803 target_sp->GetImages().FindFunctions(ConstString(name), in FindFirstType()
1743 lldb::SBSymbolContextList SBTarget::FindFunctions(const char *name, FindFunctions() function in SBTarget
/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp384 module_list.FindFunctions(name, eFunctionNameTypeAuto, function_options, in DumpLinesInFunctions()
885 matching_modules.FindFunctions(name, eFunctionNameTypeAuto, in FindMatchingFunctions()
890 target->GetImages().FindFunctions(name, eFunctionNameTypeAuto,
H A DCommandObjectDisassemble.cpp354 GetSelectedTarget().GetImages().FindFunctions(name, eFunctionNameTypeAuto, in GetNameRanges()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp940 m_target->GetImages().FindFunctions(instance_method_name, in FindObjCMethodDecls()
953 m_target->GetImages().FindFunctions(class_method_name, in FindObjCMethodDecls()
966 m_target->GetImages().FindFunctions(selector_name, in FindObjCMethodDecls()

12