Lines Matching refs:orig
62 MBRPart::MBRPart(const MBRPart& orig) { in MBRPart() argument
64 operator=(orig); in MBRPart()
71 MBRPart& MBRPart::operator=(const MBRPart& orig) { in operator =() argument
74 status = orig.status; in operator =()
76 firstSector[i] = orig.firstSector[i]; in operator =()
77 lastSector[i] = orig.lastSector[i]; in operator =()
79 partitionType = orig.partitionType; in operator =()
80 firstLBA = orig.firstLBA; in operator =()
81 lengthLBA = orig.lengthLBA; in operator =()
82 includeAs = orig.includeAs; in operator =()
83 canBePrimary = orig.canBePrimary; in operator =()
84 canBeLogical = orig.canBeLogical; in operator =()
89 MBRPart& MBRPart::operator=(const struct MBRRecord& orig) { in operator =() argument
92 status = orig.status; in operator =()
94 firstSector[i] = orig.firstSector[i]; in operator =()
95 lastSector[i] = orig.lastSector[i]; in operator =()
97 partitionType = orig.partitionType; in operator =()
98 firstLBA = orig.firstLBA; in operator =()
99 lengthLBA = orig.lengthLBA; in operator =()