Lines Matching defs:MOSection
475 MachOSection MOSection;
476 getSection(Obj, Section.getRawDataRefImpl(), MOSection);
487 W.printHex("Address", MOSection.Address);
488 W.printHex("Size", MOSection.Size);
489 W.printNumber("Offset", MOSection.Offset);
490 W.printNumber("Alignment", MOSection.Alignment);
491 W.printHex("RelocationOffset", MOSection.RelocationTableOffset);
492 W.printNumber("RelocationCount", MOSection.NumRelocationTableEntries);
493 W.printEnum("Type", MOSection.Flags & 0xFF, ArrayRef(MachOSectionTypes));
494 W.printFlags("Attributes", MOSection.Flags >> 8,
496 W.printHex("Reserved1", MOSection.Reserved1);
497 W.printHex("Reserved2", MOSection.Reserved2);
499 W.printHex("Reserved3", MOSection.Reserved3);