Searched defs:CPartition (Results 1 – 4 of 4) sorted by relevance
82 struct CPartition struct84 Byte Status;85 CChs BeginChs;86 Byte Type;87 CChs EndChs;88 UInt32 Lba;89 UInt32 NumBlocks;91 CPartition() { memset (this, 0, sizeof(*this)); } in CPartition() argument93 bool IsEmpty() const { return Type == 0; } in IsEmpty()94 bool IsExtended() const { return Type == 5 || Type == 0xF; } in IsExtended()[all …]
53 struct CPartition struct55 Byte Type[16];56 Byte Id[16];57 UInt64 FirstLba;58 UInt64 LastLba;59 UInt64 Flags;60 const char *Ext; // detected later61 Byte Name[kNameLen * 2];63 bool IsUnused() const in IsUnused()71 UInt64 GetSize(unsigned sectorSizeLog) const { return (LastLba - FirstLba + 1) << sectorSizeLog; } in GetSize()[all …]
190 struct CPartition struct194 char name[kNameLen];196 UInt32 attributes; /* (LP_PARTITION_ATTR_*). */200 UInt32 first_extent_index;203 UInt32 num_extents;206 UInt32 group_index;208 void Parse(const Byte *p) in Parse()218 UInt32 MethodsMask;219 UInt64 NumSectors;220 UInt64 NumSectors_Pack;[all …]
130 struct CPartition struct149 CPartition(): in CPartition() argument