Lines Matching defs:CVolHeader
190 struct CVolHeader struct
192 unsigned BlockSizeLog;
193 UInt32 NumFiles;
194 UInt32 NumFolders;
195 UInt32 NumBlocks;
196 UInt32 NumFreeBlocks;
198 bool Is_Hsfx_ver5;
203 UInt32 CTime;
204 UInt32 MTime;
212 UInt64 GetPhySize() const { return (UInt64)NumBlocks << BlockSizeLog; } in GetPhySize()
213 UInt64 GetFreeSize() const { return (UInt64)NumFreeBlocks << BlockSizeLog; } in GetFreeSize()
214 bool IsHfsX() const { return Is_Hsfx_ver5; } in IsHfsX()