Lines Matching defs:CSection
217 struct CSection struct
219 char Name[kNameSize];
221 UInt64 Va;
222 UInt64 Pa;
223 UInt64 VSize;
224 UInt64 PSize;
226 UInt32 Align;
227 UInt32 Flags;
228 unsigned SegmentIndex;
229 bool IsDummy;
231 CSection(): IsDummy(false) {} in CSection() function
233 UInt64 GetPackSize() const { return PSize; } in GetPackSize()