Lines Matching refs:table_offset
535 Off table_offset = iter.NextOffset(); in GetSectionOffsetByType() local
536 if (table_offset == 0) in GetSectionOffsetByType()
538 Word sh_type = GetWordAt(table_offset + offsetof(Shdr, sh_type)); in GetSectionOffsetByType()
540 *size = GetOffAt(table_offset + offsetof(Shdr, sh_size)); in GetSectionOffsetByType()
541 return GetOffAt(table_offset + offsetof(Shdr, sh_offset)); in GetSectionOffsetByType()
552 Off table_offset = iter.NextOffset(); in GetDynamicStringTableIndex() local
553 if (table_offset == 0) in GetDynamicStringTableIndex()
555 Word sh_type = GetWordAt(table_offset + offsetof(Shdr, sh_type)); in GetDynamicStringTableIndex()
557 return GetWordAt(table_offset + offsetof(Shdr, sh_link)); in GetDynamicStringTableIndex()
567 Off table_offset = iter.NextOffset(); in GetSectionOffsetByIndex() local
568 if (table_offset != 0) { in GetSectionOffsetByIndex()
569 *size = GetOffAt(table_offset + offsetof(Shdr, sh_size)); in GetSectionOffsetByIndex()
570 return GetOffAt(table_offset + offsetof(Shdr, sh_offset)); in GetSectionOffsetByIndex()