Lines Matching refs:Section
90 const coff_section **Section,
507 const coff_section *Section; in getSectionContents() local
511 if (error_code EC = resolveSectionAndAddress(Obj, Sym, Section, Addr)) in getSectionContents()
513 if (error_code EC = Obj->getSectionContents(Section, Contents)) in getSectionContents()
527 const coff_section *Section; in getSection() local
529 if (error_code EC = resolveSectionAndAddress(Obj, Sym, Section, Addr)) in getSection()
533 *SectionPtr = Section; in getSection()
548 const coff_section *Section = Obj->getCOFFSection(SecI); in cacheRelocations() local
556 RelocMap[Section].push_back(*RelI); in cacheRelocations()
560 std::sort(RelocMap[Section].begin(), RelocMap[Section].end(), in cacheRelocations()
663 const coff_section *Section = Obj->getCOFFSection(SecI); in printSections() local
671 W.printBinary("Name", Name, Section->Name); in printSections()
672 W.printHex ("VirtualSize", Section->VirtualSize); in printSections()
673 W.printHex ("VirtualAddress", Section->VirtualAddress); in printSections()
674 W.printNumber("RawDataSize", Section->SizeOfRawData); in printSections()
675 W.printHex ("PointerToRawData", Section->PointerToRawData); in printSections()
676 W.printHex ("PointerToRelocations", Section->PointerToRelocations); in printSections()
677 W.printHex ("PointerToLineNumbers", Section->PointerToLinenumbers); in printSections()
678 W.printNumber("RelocationCount", Section->NumberOfRelocations); in printSections()
679 W.printNumber("LineNumberCount", Section->NumberOfLinenumbers); in printSections()
680 W.printFlags ("Characteristics", Section->Characteristics, in printSections()
806 const coff_section *Section; in printSymbol() local
807 if (error_code EC = Obj->getSection(Symbol->SectionNumber, Section)) { in printSymbol()
818 if (Section) in printSymbol()
819 Obj->getSectionName(Section, SectionName); in printSymbol()
895 if (Section && Section->Characteristics & COFF::IMAGE_SCN_LNK_COMDAT in printSymbol()