Lines Matching refs:elfShdr
633 ElfShdr elfShdr; in ParseSectionHeaders() local
634 elfShdr.name = static_cast<uint32_t>(secIndex); in ParseSectionHeaders()
636 elfShdr.type = static_cast<uint32_t>(SHT_SYMTAB); in ParseSectionHeaders()
638 elfShdr.type = static_cast<uint32_t>(SHT_DYNSYM); in ParseSectionHeaders()
641 elfShdr.addr = secAddr; in ParseSectionHeaders()
642 elfShdr.offset = secOffset; in ParseSectionHeaders()
643 elfShdr.size = secSize; in ParseSectionHeaders()
644 elfShdr.link = static_cast<uint32_t>(secLink); in ParseSectionHeaders()
645 elfShdr.info = static_cast<uint32_t>(secInfo); in ParseSectionHeaders()
646 elfShdr.addrAlign = secAddrAlign; in ParseSectionHeaders()
647 elfShdr.entSize = secEntSize; in ParseSectionHeaders()
648 symShdrs_.emplace(secName, elfShdr); in ParseSectionHeaders()