Lines Matching refs:sect64
1696 llvm::MachO::section_64 sect64; in ProcessSegmentCommand() local
1697 ::memset(§64, 0, sizeof(sect64)); in ProcessSegmentCommand()
1701 m_mach_sections.push_back(sect64); in ProcessSegmentCommand()
1708 if (m_data.GetU8(&offset, (uint8_t *)sect64.sectname, in ProcessSegmentCommand()
1709 sizeof(sect64.sectname)) == nullptr) in ProcessSegmentCommand()
1711 if (m_data.GetU8(&offset, (uint8_t *)sect64.segname, in ProcessSegmentCommand()
1712 sizeof(sect64.segname)) == nullptr) in ProcessSegmentCommand()
1714 sect64.addr = m_data.GetAddress(&offset); in ProcessSegmentCommand()
1715 sect64.size = m_data.GetAddress(&offset); in ProcessSegmentCommand()
1717 if (m_data.GetU32(&offset, §64.offset, num_u32s) == nullptr) in ProcessSegmentCommand()
1721 sect64.offset = sect64.addr - m_text_address; in ProcessSegmentCommand()
1726 m_mach_sections.push_back(sect64); in ProcessSegmentCommand()
1730 sect64.sectname, strnlen(sect64.sectname, sizeof(sect64.sectname))); in ProcessSegmentCommand()
1738 const_segname.SetTrimmedCStringWithLength(sect64.segname, in ProcessSegmentCommand()
1739 sizeof(sect64.segname)); in ProcessSegmentCommand()
1744 const lldb::addr_t sect64_min_addr = sect64.addr; in ProcessSegmentCommand()
1745 const lldb::addr_t sect64_max_addr = sect64_min_addr + sect64.size; in ProcessSegmentCommand()
1767 if (sect64.offset) { in ProcessSegmentCommand()
1773 const lldb::addr_t section_min_file_offset = sect64.offset; in ProcessSegmentCommand()
1775 section_min_file_offset + sect64.size; in ProcessSegmentCommand()
1798 sect64.addr, // File VM address == addresses as they are in ProcessSegmentCommand()
1800 sect64.size, // VM size in bytes of this section in ProcessSegmentCommand()
1801 sect64.offset, // Offset to the data for this section in in ProcessSegmentCommand()
1803 sect64.offset ? sect64.size : 0, // Size in bytes of in ProcessSegmentCommand()
1806 sect64.align, in ProcessSegmentCommand()
1818 lldb::SectionType sect_type = GetSectionType(sect64.flags, section_name); in ProcessSegmentCommand()
1822 sect_type, sect64.addr - segment_sp->GetFileAddress(), sect64.size, in ProcessSegmentCommand()
1823 sect64.offset, sect64.offset == 0 ? 0 : sect64.size, sect64.align, in ProcessSegmentCommand()
1824 sect64.flags)); in ProcessSegmentCommand()
1830 sect64.offset) != nullptr; in ProcessSegmentCommand()