Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:orig

60 MBRPart::MBRPart(const MBRPart& orig) {
62 operator=(orig);
69 MBRPart& MBRPart::operator=(const MBRPart& orig) {
72 status = orig.status;
74 firstSector[i] = orig.firstSector[i];
75 lastSector[i] = orig.lastSector[i];
77 partitionType = orig.partitionType;
78 firstLBA = orig.firstLBA;
79 lengthLBA = orig.lengthLBA;
80 includeAs = orig.includeAs;
81 canBePrimary = orig.canBePrimary;
82 canBeLogical = orig.canBeLogical;
84 } // MBRPart::operator=(const MBRPart& orig)
87 MBRPart& MBRPart::operator=(const struct MBRRecord& orig) {
90 status = orig.status;
92 firstSector[i] = orig.firstSector[i];
93 lastSector[i] = orig.lastSector[i];
95 partitionType = orig.partitionType;
96 firstLBA = orig.firstLBA;
97 lengthLBA = orig.lengthLBA;
103 } // MBRPart::operator=(const struct MBRRecord& orig)