/llvm-project/lldb/test/API/python_api/default-constructor/ |
H A D | sb_module.py | 19 sc_list = obj.FindFunctions("my_func") 20 sc_list = obj.FindFunctions("my_func", lldb.eFunctionNameTypeAny)
|
H A D | sb_target.py | 23 sc_list = obj.FindFunctions("the_func") 24 sc_list = obj.FindFunctions("the_func", lldb.eFunctionNameTypeAny)
|
/llvm-project/lldb/test/API/functionalities/disassemble/aarch64-adrp-add/ |
H A D | TestAArch64AdrpAdd.py | 22 mains = target.FindFunctions("main") 39 mains = target.FindFunctions("main")
|
/llvm-project/cross-project-tests/debuginfo-tests/llgdb-tests/ |
H A D | llgdb.py | 114 mainfile = target.FindFunctions("main")[0].compile_unit.file 127 for elem in target.FindFunctions(cmd[1]):
|
/llvm-project/lldb/include/lldb/Core/ |
H A D | Module.h | 64 /// Options used by Module::FindFunctions. This cannot be a nested class 312 void FindFunctions(const LookupInfo &lookup_info, 335 void FindFunctions(ConstString name, 342 void FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx, 359 void FindFunctions(const RegularExpression ®ex,
|
H A D | ModuleList.h | 286 void FindFunctions(ConstString name, lldb::FunctionNameType name_type_mask, 296 void FindFunctions(const RegularExpression &name,
|
/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | InferiorCallPOSIX.cpp | 49 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap() 146 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
|
/llvm-project/lldb/unittests/Target/ |
H A D | LocateModuleCallbackTest.cpp | 158 SymbolContextList FindFunctions(const ModuleSP &module_sp, in FindFunctions() function 165 module_sp->FindFunctions(ConstString(name), CompilerDeclContext(), type, in FindFunctions() 171 SymbolContextList sc_list = FindFunctions(module_sp, k_function_symbol); in CheckStrippedSymbol() 174 sc_list = FindFunctions(module_sp, k_hidden_function_symbol); in CheckStrippedSymbol() 179 SymbolContextList sc_list = FindFunctions(module_sp, k_function_symbol); in CheckUnstrippedSymbol() 182 sc_list = FindFunctions(module_sp, k_hidden_function_symbol); in CheckUnstrippedSymbol()
|
/llvm-project/lldb/source/Symbol/ |
H A D | SymbolFileOnDemand.cpp | 357 void SymbolFileOnDemand::FindFunctions(const RegularExpression ®ex, 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 D | SymbolFile.cpp | 124 void SymbolFile::FindFunctions(const Module::LookupInfo &lookup_info, in FindFunctions() function in SymbolFile 129 void SymbolFile::FindFunctions(const RegularExpression ®ex, in FindFunctions() function in SymbolFile
|
/llvm-project/lldb/bindings/interface/ |
H A D | SBModuleDocstrings.i | 151 ) lldb::SBModule::FindFunctions;
|
H A D | SBTargetDocstrings.i | 284 ) lldb::SBTarget::FindFunctions;
|
/llvm-project/lldb/source/Plugins/SymbolFile/Breakpad/ |
H A D | SymbolFileBreakpad.h | 114 void FindFunctions(const Module::LookupInfo &lookup_info, 118 void FindFunctions(const RegularExpression ®ex, bool include_inlines,
|
/llvm-project/lldb/source/Core/ |
H A D | Module.cpp | 831 void Module::FindFunctions(const Module::LookupInfo &lookup_info, in FindFunctions() 837 symbols->FindFunctions(lookup_info, parent_decl_ctx, in FindFunctions() 850 void Module::FindFunctions(ConstString name, in FindFunctions() 857 FindFunctions(lookup_info, parent_decl_ctx, options, sc_list); 865 void Module::FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx, in FindFunctions() 874 FindFunctions(name, CompilerDeclContext(), name_type_mask, options, 882 void Module::FindFunctions(const RegularExpression ®ex, in FindFunctions() 888 symbols->FindFunctions(regex, options.include_inlines, sc_list); in FindFunctions() 824 void Module::FindFunctions(const Module::LookupInfo &lookup_info, FindFunctions() function in Module 843 void Module::FindFunctions(ConstString name, FindFunctions() function in Module 858 void Module::FindFunctions(llvm::ArrayRef<CompilerContext> compiler_ctx, FindFunctions() function in Module 875 void Module::FindFunctions(const RegularExpression ®ex, FindFunctions() function in Module
|
H A D | ModuleList.cpp | 441 void ModuleList::FindFunctions(ConstString name, in FindFunctions() function in ModuleList 452 module_sp->FindFunctions(lookup_info, CompilerDeclContext(), options, in FindFunctions() 463 module_sp->FindFunctions(name, CompilerDeclContext(), name_type_mask, in FindFunctions() 495 void ModuleList::FindFunctions(const RegularExpression &name, in FindFunctions() function in ModuleList 500 module_sp->FindFunctions(name, options, sc_list); in FindFunctions()
|
/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
H A D | SymbolFileCTF.h | 114 void FindFunctions(const lldb_private::Module::LookupInfo &lookup_info, 119 void FindFunctions(const lldb_private::RegularExpression ®ex,
|
/llvm-project/lldb/test/API/python_api/name_lookup/ |
H A D | TestNameLookup.py | 55 symbol_contexts = target.FindFunctions(mangled, lldb.eFunctionNameTypeFull)
|
/llvm-project/lldb/include/lldb/Symbol/ |
H A D | SymbolFileOnDemand.h | 142 void FindFunctions(const lldb_private::Module::LookupInfo &lookup_info, 147 void FindFunctions(const lldb_private::RegularExpression ®ex,
|
/llvm-project/lldb/test/API/python_api/sbplatform/ |
H A D | TestLocateModuleCallback.py | 82 sc_list = module.FindFunctions(MODULE_FUNCTION, lldb.eSymbolTypeCode) 84 sc_list = module.FindFunctions(MODULE_HIDDEN_FUNCTION, lldb.eSymbolTypeCode)
|
/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | SymbolFilePDB.h | 123 void FindFunctions(const lldb_private::Module::LookupInfo &lookup_info, 128 void FindFunctions(const lldb_private::RegularExpression ®ex,
|
/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
H A D | TestAvoidBreakpointInDelaySlot.py | 32 list = target.FindFunctions("foo", lldb.eFunctionNameTypeAuto)
|
/llvm-project/lldb/test/API/python_api/symbol-context/two-files/ |
H A D | TestSymbolContextTwoFiles.py | 24 sc_list = module.FindFunctions(symbol_name, lldb.eSymbolTypeCode)
|
/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
H A D | SymbolFileNativePDB.h | 134 void FindFunctions(const Module::LookupInfo &lookup_info, 138 void FindFunctions(const RegularExpression ®ex, bool include_inlines,
|
/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | SymbolFileDWARFDebugMap.h | 117 void FindFunctions(const Module::LookupInfo &lookup_info, 120 void FindFunctions(const RegularExpression ®ex, bool include_inlines,
|
/llvm-project/lldb/include/lldb/API/ |
H A D | SBModule.h | 169 FindFunctions(const char *name,
|