| /llvm-project-15.0.7/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-15.0.7/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-15.0.7/cross-project-tests/debuginfo-tests/llgdb-tests/ |
| H A D | llgdb.py | 112 mainfile = target.FindFunctions('main')[0].compile_unit.file 125 for elem in target.FindFunctions(cmd[1]):
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/ |
| H A D | InferiorCallPOSIX.cpp | 50 process->GetTarget().GetImages().FindFunctions( in InferiorCallMmap() 145 process->GetTarget().GetImages().FindFunctions( in InferiorCallMunmap()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | SymbolFileOnDemand.cpp | 347 void SymbolFileOnDemand::FindFunctions(const RegularExpression ®ex, in FindFunctions() function in SymbolFileOnDemand 374 return m_sym_file_impl->FindFunctions(regex, include_inlines, sc_list); in FindFunctions() 377 void SymbolFileOnDemand::FindFunctions( in FindFunctions() function in SymbolFileOnDemand 405 return m_sym_file_impl->FindFunctions(name, parent_decl_ctx, name_type_mask, in FindFunctions()
|
| H A D | SymbolFile.cpp | 123 void SymbolFile::FindFunctions(ConstString name, in FindFunctions() function in SymbolFile 129 void SymbolFile::FindFunctions(const RegularExpression ®ex, in FindFunctions() function in SymbolFile
|
| /llvm-project-15.0.7/lldb/test/API/python_api/name_lookup/ |
| H A D | TestNameLookup.py | 54 symbol_contexts = target.FindFunctions(mangled, lldb.eFunctionNameTypeFull)
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | SymbolFileOnDemand.h | 138 void FindFunctions(lldb_private::ConstString name, 144 void FindFunctions(const lldb_private::RegularExpression ®ex,
|
| H A D | SymbolFile.h | 237 virtual void FindFunctions(ConstString name, 241 virtual void FindFunctions(const RegularExpression ®ex,
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.h | 113 void FindFunctions(ConstString name, 118 void FindFunctions(const RegularExpression ®ex, bool include_inlines,
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | ModuleList.h | 264 void FindFunctions(ConstString name, lldb::FunctionNameType name_type_mask, 274 void FindFunctions(const RegularExpression &name,
|
| H A D | Module.h | 314 void FindFunctions(ConstString name, 332 void FindFunctions(const RegularExpression ®ex,
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_in_delayslot/ |
| H A D | TestAvoidBreakpointInDelaySlot.py | 38 list = target.FindFunctions('foo', lldb.eFunctionNameTypeAuto)
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | SymbolFilePDB.h | 122 void FindFunctions(lldb_private::ConstString name, 128 void FindFunctions(const lldb_private::RegularExpression ®ex,
|
| /llvm-project-15.0.7/lldb/test/API/python_api/symbol-context/two-files/ |
| H A D | TestSymbolContextTwoFiles.py | 26 sc_list = module.FindFunctions(symbol_name, lldb.eSymbolTypeCode)
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ModuleList.cpp | 417 void ModuleList::FindFunctions(ConstString name, in FindFunctions() function in ModuleList 428 module_sp->FindFunctions(lookup_info.GetLookupName(), in FindFunctions() 440 module_sp->FindFunctions(name, CompilerDeclContext(), name_type_mask, in FindFunctions() 472 void ModuleList::FindFunctions(const RegularExpression &name, in FindFunctions() function in ModuleList 477 module_sp->FindFunctions(name, options, sc_list); in FindFunctions()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARFDebugMap.h | 112 void FindFunctions(lldb_private::ConstString name, 117 void FindFunctions(const lldb_private::RegularExpression ®ex,
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 133 void FindFunctions(ConstString name, 138 void FindFunctions(const RegularExpression ®ex, bool include_inlines,
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBModule.h | 169 FindFunctions(const char *name,
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBModule.i | 264 matches.") FindFunctions; 266 FindFunctions (const char *name,
|
| /llvm-project-15.0.7/lldb/test/API/python_api/module_section/ |
| H A D | TestModuleAndSection.py | 98 exe_module.FindFunctions(None, 0)
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverName.cpp | 277 context.module_sp->FindFunctions( in SearchCallback() 290 context.module_sp->FindFunctions(m_regex, function_options, func_list); in SearchCallback()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/step_over_breakpoint/ |
| H A D | TestStepOverBreakpoint.py | 54 contextList = self.target.FindFunctions('main', lldb.eFunctionNameTypeAuto)
|
| /llvm-project-15.0.7/lldb/test/API/python_api/target/ |
| H A D | TestTargetAPI.py | 304 list = target.FindFunctions(None, lldb.eFunctionNameTypeAuto) 307 list = target.FindFunctions('c', lldb.eFunctionNameTypeAuto)
|