• Home
  • Raw
  • Download

Lines Matching refs:Sec

232   virtual error_code getSectionNext(DataRefImpl Sec, SectionRef &Res) const;
233 virtual error_code getSectionName(DataRefImpl Sec, StringRef &Res) const;
234 virtual error_code getSectionAddress(DataRefImpl Sec, uint64_t &Res) const;
235 virtual error_code getSectionSize(DataRefImpl Sec, uint64_t &Res) const;
236 virtual error_code getSectionContents(DataRefImpl Sec, StringRef &Res) const;
237 virtual error_code isSectionText(DataRefImpl Sec, bool &Res) const;
238 virtual error_code sectionContainsSymbol(DataRefImpl Sec, DataRefImpl Symb,
443 ::getSectionNext(DataRefImpl Sec, SectionRef &Result) const { in getSectionNext() argument
444 const uint8_t *sec = reinterpret_cast<const uint8_t *>(Sec.p); in getSectionNext()
446 Sec.p = reinterpret_cast<intptr_t>(sec); in getSectionNext()
447 Result = SectionRef(Sec, this); in getSectionNext()
453 ::getSectionName(DataRefImpl Sec, in getSectionName() argument
455 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p); in getSectionName()
462 ::getSectionAddress(DataRefImpl Sec, in getSectionAddress() argument
464 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p); in getSectionAddress()
471 ::getSectionSize(DataRefImpl Sec, in getSectionSize() argument
473 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p); in getSectionSize()
480 ::getSectionContents(DataRefImpl Sec, in getSectionContents() argument
482 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p); in getSectionContents()
490 ::isSectionText(DataRefImpl Sec, in isSectionText() argument
492 const Elf_Shdr *sec = reinterpret_cast<const Elf_Shdr *>(Sec.p); in isSectionText()
502 ::sectionContainsSymbol(DataRefImpl Sec, in sectionContainsSymbol() argument