Searched refs:sect_idx (Results 1 - 8 of 8) sorted by relevance

/external/lldb/source/Plugins/DynamicLoader/Static/
H A DDynamicLoaderStatic.cpp128 size_t sect_idx = 0; local
129 for (sect_idx = 0; sect_idx < num_sections; ++sect_idx)
134 SectionSP section_sp (section_list->GetSectionAtIndex (sect_idx));
/external/lldb/source/Core/
H A DSection.cpp353 size_t sect_idx = FindSectionIndex (sect_sp.get()); local
354 if (sect_idx == UINT32_MAX)
356 sect_idx = AddSection (sect_sp);
358 return sect_idx;
H A DModule.cpp1304 for (size_t sect_idx = 0; sect_idx < num_sections; sect_idx++)
1306 SectionSP section_sp = sections->GetSectionAtIndex(sect_idx);
1411 size_t sect_idx = 0; local
1412 for (sect_idx = 0; sect_idx < num_sections; ++sect_idx)
1417 SectionSP section_sp (section_list->GetSectionAtIndex (sect_idx));
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp900 uint32_t sect_idx = 0; local
908 for (sect_idx=0; sect_idx<num_ondisk_sections; ++sect_idx)
910 SectionSP ondisk_section_sp(ondisk_section_list->GetSectionAtIndex(sect_idx));
/external/lldb/examples/python/
H A Dsymbolication.py524 for sect_idx in range(num_sub_sections):
525 print_module_section (section.GetSubSectionAtIndex(sect_idx), depth - 1)
/external/lldb/source/API/
H A DSBTarget.cpp2512 for (size_t sect_idx = 0; sect_idx < num_sections; ++sect_idx)
2514 SectionSP section_sp (section_list->GetSectionAtIndex(sect_idx));
/external/lldb/examples/darwin/heap_find/
H A Dheap.py883 for sect_idx in range(module.GetNumSections()):
884 section = module.GetSectionAtIndex(sect_idx)
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp3556 for (uint32_t sect_idx = 1; sect_idx < m_mach_sections.size(); ++sect_idx)
3558 if ((m_mach_sections[sect_idx].flags & SectionFlagMaskSectionType) == SectionTypeSymbolStubs)
3560 uint32_t symbol_stub_byte_size = m_mach_sections[sect_idx].reserved2;
3564 const uint32_t num_symbol_stubs = m_mach_sections[sect_idx].size / symbol_stub_byte_size;
3569 const uint32_t symbol_stub_index_offset = m_mach_sections[sect_idx].reserved1;
3573 const lldb::addr_t symbol_stub_addr = m_mach_sections[sect_idx].addr + (stub_idx * symbol_stub_byte_size);

Completed in 1326 milliseconds