Lines Matching defs:CSection
351 struct CSection struct
353 AString Name;
355 UInt32 VSize;
356 UInt32 Va;
357 UInt32 PSize;
358 UInt32 Pa;
359 UInt32 Flags;
360 UInt32 Time;
362 bool IsRealSect;
363 bool IsDebug;
364 bool IsAdditionalSection;
366 CSection(): IsRealSect(false), IsDebug(false), IsAdditionalSection(false) {} in CSection() function
368 UInt32 GetSizeExtract() const { return PSize; } in GetSizeExtract()
369 UInt32 GetSizeMin() const { return MyMin(PSize, VSize); } in GetSizeMin()
371 void UpdateTotalSize(UInt32 &totalSize) const in UpdateTotalSize()
380 int Compare(const CSection &s) const in Compare()