| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBModule.i | 211 GetCompileUnitAtIndex (uint32_t); 512 return self.sbmodule.GetCompileUnitAtIndex(key) 516 comp_unit = self.sbmodule.GetCompileUnitAtIndex(idx) 526 comp_unit = self.sbmodule.GetCompileUnitAtIndex(idx) 554 self.compile_units_array.append(self.GetCompileUnitAtIndex(idx))
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | lldb_module_utils.py | 71 cu = module.GetCompileUnitAtIndex(cu_idx) 173 cu = module.GetCompileUnitAtIndex(i)
|
| H A D | lldbtk.py | 286 cu = self.module.GetCompileUnitAtIndex(i)
|
| /llvm-project-15.0.7/lldb/unittests/SymbolFile/DWARF/ |
| H A D | XcodeSDKModuleTests.cpp | 67 CompUnitSP comp_unit = sym_file.GetCompileUnitAtIndex(0); in TEST_F()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/type_get_module/ |
| H A D | TestTypeGetModule.py | 36 comp_unit = exe_module.GetCompileUnitAtIndex(index)
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | SymbolFile.h | 140 virtual lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx) = 0; 416 lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx) override;
|
| H A D | SymbolFileOnDemand.h | 56 lldb::CompUnitSP GetCompileUnitAtIndex(uint32_t idx) override;
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBModule.h | 125 lldb::SBCompileUnit GetCompileUnitAtIndex(uint32_t);
|
| /llvm-project-15.0.7/lldb/tools/lldb-test/ |
| H A D | lldb-test.cpp | 428 lldb::CompUnitSP cu_sp = Module.GetCompileUnitAtIndex(i); in findFunctions() 482 lldb::CompUnitSP cu_sp = Module.GetCompileUnitAtIndex(i); in findBlocks() 569 CompUnitSP Candidate = Module.GetCompileUnitAtIndex(Ind); in findVariables() 669 lldb::CompUnitSP comp_unit = symfile->GetCompileUnitAtIndex(i); in verify()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | SymbolFileOnDemand.cpp | 577 CompUnitSP SymbolFileOnDemand::GetCompileUnitAtIndex(uint32_t idx) { in GetCompileUnitAtIndex() function in SymbolFileOnDemand 580 return m_sym_file_impl->GetCompileUnitAtIndex(idx); in GetCompileUnitAtIndex()
|
| H A D | SymbolFile.cpp | 204 CompUnitSP SymbolFileCommon::GetCompileUnitAtIndex(uint32_t idx) { in GetCompileUnitAtIndex() function in SymbolFileCommon
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBModule.cpp | 263 SBCompileUnit SBModule::GetCompileUnitAtIndex(uint32_t index) { in GetCompileUnitAtIndex() function in SBModule 269 CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(index); in GetCompileUnitAtIndex()
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointResolverFileLine.cpp | 247 CompUnitSP cu_sp(context.module_sp->GetCompileUnitAtIndex(i)); in SearchCallback()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 380 sc.comp_unit = GetCompileUnitAtIndex(idx).get(); in ResolveSymbolContext() 417 CompileUnit &cu = *GetCompileUnitAtIndex(i); in ResolveSymbolContext() 431 CompUnitSP cu_sp = GetCompileUnitAtIndex(i); in FindFunctions()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | Module.cpp | 382 sc.comp_unit = symbols->GetCompileUnitAtIndex(cu_idx).get(); in ParseAllDebugSymbols() 423 CompUnitSP Module::GetCompileUnitAtIndex(size_t index) { in GetCompileUnitAtIndex() function in Module 430 cu_sp = symbols->GetCompileUnitAtIndex(index); in GetCompileUnitAtIndex() 624 sc.comp_unit = GetCompileUnitAtIndex(i).get(); in FindCompileUnits()
|
| H A D | SearchFilter.cpp | 302 CompUnitSP cu_sp(module_sp->GetCompileUnitAtIndex(i)); in DoCUIteration() 758 CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(cu_idx); in Search()
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | troubleshooting.rst | 88 ... cu = m.GetCompileUnitAtIndex(i).file.fullpath
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | Module.h | 554 lldb::CompUnitSP GetCompileUnitAtIndex(size_t idx);
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUserExpression.cpp | 501 module.GetCompileUnitAtIndex(i)->GetSupportFiles(); in GetModuleConfig()
|
| /llvm-project-15.0.7/lldb/source/Commands/ |
| H A D | CommandObjectSource.cpp | 285 CompUnitSP cu_sp(module->GetCompileUnitAtIndex(i)); in DumpFileLinesInModule()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | SymbolFileDWARF.cpp | 959 auto cu = module->GetCompileUnitAtIndex(i); in ForEachExternalModule() 1696 if (auto comp_unit = GetCompileUnitAtIndex(0)) in GetDWOId() 1881 CompUnitSP cu_sp = module_sp->GetCompileUnitAtIndex(i); in GetGlobalAranges()
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | lldb-vscode.cpp | 1314 auto curr_unit = curr_module.GetCompileUnitAtIndex(j); in request_compileUnits()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.cpp | 1001 CompUnitSP cu_sp = GetCompileUnitAtIndex(*modi); in ResolveSymbolContext()
|