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

12

/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBModuleDocstrings.i151 ) lldb::SBModule::FindFunctions;
H A DSBTargetDocstrings.i284 ) lldb::SBTarget::FindFunctions;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DInferiorCallPOSIX.cpp49 process->GetTarget().GetImages().FindFunctions(
146 process->GetTarget().GetImages().FindFunctions(
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Core/
H A DModule.h63 /// Options used by Module::FindFunctions. This cannot be a nested class
311 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.h264 /// \see Module::FindFunctions ()
265 void FindFunctions(ConstString name, lldb::FunctionNameType name_type_mask,
274 /// \see Module::FindFunctions ()
275 void FindFunctions(const RegularExpression &name,
/freebsd-current/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,
H A DSymbolFileBreakpad.cpp426 void SymbolFileBreakpad::FindFunctions( function in class:SymbolFileBreakpad
447 void SymbolFileBreakpad::FindFunctions(const RegularExpression &regex, function in class:SymbolFileBreakpad
/freebsd-current/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-current/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-current/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFile.cpp124 void SymbolFile::FindFunctions(const Module::LookupInfo &lookup_info, function in class:SymbolFile
129 void SymbolFile::FindFunctions(const RegularExpression &regex, function in class:SymbolFile
H A DSymbolFileOnDemand.cpp357 void SymbolFileOnDemand::FindFunctions(const RegularExpression &regex, function in class:SymbolFileOnDemand
384 return m_sym_file_impl->FindFunctions(regex, include_inlines, sc_list);
387 void SymbolFileOnDemand::FindFunctions( function in class:SymbolFileOnDemand
417 return m_sym_file_impl->FindFunctions(lookup_info, parent_decl_ctx,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/API/
H A DSBModule.h169 FindFunctions(const char *name,
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Core/
H A DModuleList.cpp436 void ModuleList::FindFunctions(ConstString name, function in class:ModuleList
447 module_sp->FindFunctions(lookup_info, CompilerDeclContext(), options,
458 module_sp->FindFunctions(name, CompilerDeclContext(), name_type_mask,
490 void ModuleList::FindFunctions(const RegularExpression &name, function in class:ModuleList
495 module_sp->FindFunctions(name, options, sc_list);
H A DModule.cpp824 void Module::FindFunctions(const Module::LookupInfo &lookup_info, function in class:Module
830 symbols->FindFunctions(lookup_info, parent_decl_ctx,
843 void Module::FindFunctions(ConstString name, function in class:Module
850 FindFunctions(lookup_info, parent_decl_ctx, options, sc_list);
858 void Module::FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx, function in class:Module
867 FindFunctions(name, CompilerDeclContext(), name_type_mask, options,
875 void Module::FindFunctions(const RegularExpression &regex, function in class:Module
881 symbols->FindFunctions(regex, options.include_inlines, sc_list);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDebugMap.h116 void FindFunctions(const Module::LookupInfo &lookup_info,
119 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.cpp1066 void SymbolFileDWARFDebugMap::FindFunctions( function in class:SymbolFileDWARFDebugMap
1071 LLDB_SCOPED_TIMERF("SymbolFileDWARFDebugMap::FindFunctions (name = %s)",
1076 oso_dwarf->FindFunctions(lookup_info, parent_decl_ctx, include_inlines,
1086 void SymbolFileDWARFDebugMap::FindFunctions(const RegularExpression &regex, function in class:SymbolFileDWARFDebugMap
1090 LLDB_SCOPED_TIMERF("SymbolFileDWARFDebugMap::FindFunctions (regex = '%s')",
1096 oso_dwarf->FindFunctions(regex, include_inlines, sc_list);
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp245 // "FindFunctions".
275 context.module_sp->FindFunctions(lookup, CompilerDeclContext(),
287 context.module_sp->FindFunctions(m_regex, function_options, func_list);
/freebsd-current/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-current/contrib/llvm-project/lldb/source/API/
H A DSBModule.cpp386 lldb::SBSymbolContextList SBModule::FindFunctions(const char *name, function in class:SBModule
398 module_sp->FindFunctions(ConstString(name), CompilerDeclContext(), type,
H A DSBTarget.cpp1743 lldb::SBSymbolContextList SBTarget::FindFunctions(const char *name, function in class:SBTarget
1760 target_sp->GetImages().FindFunctions(ConstString(name), mask,
1782 target_sp->GetImages().FindFunctions(RegularExpression(name_ref),
1787 target_sp->GetImages().FindFunctions(RegularExpression(regexstr),
1791 target_sp->GetImages().FindFunctions(ConstString(name),
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp384 module_list.FindFunctions(name, eFunctionNameTypeAuto, function_options,
881 matching_modules.FindFunctions(name, eFunctionNameTypeAuto,
886 target->GetImages().FindFunctions(name, eFunctionNameTypeAuto,
H A DCommandObjectDisassemble.cpp354 GetSelectedTarget().GetImages().FindFunctions(name, eFunctionNameTypeAuto,

Completed in 298 milliseconds

12