| /llvm-project-15.0.7/llvm/test/MC/COFF/ |
| H A D | bigobj.py | 10 num_sections = 65277 variable 24 for i in range(0, num_sections):
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestWasm.py | 108 num_sections = module.GetNumSections() 109 self.assertEquals(5, num_sections) 160 num_sections = module.GetNumSections() 161 self.assertEquals(5, num_sections) 204 num_sections = module.GetNumSections() 205 self.assertEquals(5, num_sections)
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Static/ |
| H A D | DynamicLoaderStatic.cpp | 101 const size_t num_sections = section_list->GetSize(); in LoadAllImagesAtFileAddresses() local 103 for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) { in LoadAllImagesAtFileAddresses()
|
| /llvm-project-15.0.7/lldb/source/Plugins/JITLoader/GDB/ |
| H A D | JITLoaderGDB.cpp | 233 const uint32_t num_sections = section_list.GetSize(); in updateSectionLoadAddress() local 234 for (uint32_t i = 0; i < num_sections; ++i) { in updateSectionLoadAddress() 378 const uint32_t num_sections = section_list->GetSize(); in ReadJITDescriptorImpl() local 379 for (uint32_t i = 0; i < num_sections; ++i) { in ReadJITDescriptorImpl()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | DynamicLoader.cpp | 129 const size_t num_sections = sections->GetSize(); in UnloadSectionsCommon() local 130 for (size_t i = 0; i < num_sections; ++i) { in UnloadSectionsCommon()
|
| H A D | Section.cpp | 590 size_t num_sections = m_sections.size(); in FindSectionByType() local 591 for (size_t idx = start_idx; idx < num_sections; ++idx) { in FindSectionByType()
|
| H A D | Module.cpp | 1449 size_t num_sections = section_list->GetNumSections(0); in SetSymbolFileFileSpec() local 1450 for (size_t idx = num_sections; idx > 0; --idx) { in SetSymbolFileFileSpec() 1481 size_t num_sections = sections->GetSize(); in IsLoadedInTarget() local 1482 for (size_t sect_idx = 0; sect_idx < num_sections; sect_idx++) { in IsLoadedInTarget()
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 218 const size_t num_sections = sections->GetSize(); in UpdateLoadedSections() local 220 for (unsigned i = 0; i < num_sections; ++i) { in UpdateLoadedSections() 249 const size_t num_sections = sections->GetSize(); in UnloadSections() local 250 for (size_t i = 0; i < num_sections; ++i) { in UnloadSections()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/JIT/ |
| H A D | ObjectFileJIT.cpp | 186 const size_t num_sections = section_list->GetSize(); in SetLoadAddress() local 188 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx) { in SetLoadAddress()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | lldbtk.py | 228 num_sections = self.module.GetNumSections() 229 for i in range(num_sections): 258 num_sections = self.section.GetNumSubSections() 259 for i in range(num_sections):
|
| H A D | mach_o.py | 1039 num_sections = len(self.sections) 1040 if num_sections > 1: 1042 for sect_idx in range(1, num_sections):
|
| /llvm-project-15.0.7/lldb/test/Shell/Register/Core/Inputs/ |
| H A D | strip-coredump.py | 53 assert elf.num_sections() == 0
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/ |
| H A D | ProcessMachCore.cpp | 293 const uint32_t num_sections = section_list->GetNumSections(0); in DoLoadCore() local 294 if (num_sections == 0) { in DoLoadCore() 308 for (uint32_t i = 0; i < num_sections; ++i) { in DoLoadCore()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBModule.i | 545 for idx in range(self.num_sections): 574 …num_sections = property(GetNumSections, None, doc='''A read only property that returns number of s…
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/wasm/ |
| H A D | ObjectFileWasm.cpp | 377 const size_t num_sections = section_list->GetSize(); in SetLoadAddress() local 378 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx) { in SetLoadAddress()
|
| /llvm-project-15.0.7/lldb/examples/summaries/cocoa/ |
| H A D | objc_runtime.py | 752 num_sections = module.GetNumSections() 754 for idx in range(num_sections):
|
| /llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/ |
| H A D | DynamicLoaderMacOSXDYLD.cpp | 905 const size_t num_sections = dylib_info.segments.size(); in ParseLoadCommands() local 906 for (size_t i = 0; i < num_sections; ++i) { in ParseLoadCommands()
|
| H A D | DynamicLoaderDarwin.cpp | 514 const size_t num_sections = image_infos[i].segments.size(); in JSONImageInformationIntoImageInfo() local 515 for (size_t k = 0; k < num_sections; ++k) { in JSONImageInformationIntoImageInfo()
|
| /llvm-project-15.0.7/lldb/tools/lldb-vscode/ |
| H A D | JSONUtils.cpp | 369 size_t num_sections = module.GetNumSections(); in GetDebugInfoSize() local 370 for (size_t i = 0; i < num_sections; i++) { in GetDebugInfoSize()
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/ |
| H A D | SymbolFileBreakpad.cpp | 109 size_t num_sections = list.GetNumSections(0); in operator ++() local 111 m_next_section_idx < num_sections) { in operator ++()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | Symtab.cpp | 897 const int num_sections = sectlist->GetNumSections(0); in AddSectionsToRangeMap() local 898 for (int i = 0; i < num_sections; i++) { in AddSectionsToRangeMap()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/ |
| H A D | ObjectFilePECOFF.cpp | 469 const size_t num_sections = section_list->GetSize(); in SetLoadAddress() local 472 for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) { in SetLoadAddress()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBTarget.cpp | 2142 const size_t num_sections = section_list->GetSize(); in ClearModuleLoadAddress() local 2143 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx) { in ClearModuleLoadAddress()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/Mach-O/ |
| H A D | ObjectFileMachO.cpp | 6096 const size_t num_sections = section_list->GetSize(); 6097 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx) { 6161 const size_t num_sections = section_list->GetSize(); 6165 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx) { 6180 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx) {
|
| /llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ObjectFileELF.cpp | 684 const size_t num_sections = section_list->GetSize(); in SetLoadAddress() local 687 for (sect_idx = 0; sect_idx < num_sections; ++sect_idx) { in SetLoadAddress()
|