Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:orig

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