HomeSort by relevance Sort by last modified time
    Searched defs:MBRPart (Results 1 - 2 of 2) sorted by null

  /external/gptfdisk/
mbrpart.cc 2 MBRPart class, part of GPT fdisk program family.
29 #include "mbrpart.h"
33 uint32_t MBRPart::numHeads = MAX_HEADS;
34 uint32_t MBRPart::numSecspTrack = MAX_SECSPERTRACK;
35 uint64_t MBRPart::diskSize = 0;
36 uint32_t MBRPart::blockSize = 512;
37 int MBRPart::numInstances = 0;
39 MBRPart::MBRPart() {
62 MBRPart::MBRPart(const MBRPart& orig)
    [all...]
mbrpart.h 2 MBRPart class, part of GPT fdisk program family.
54 class MBRPart {
72 MBRPart();
73 MBRPart(const MBRPart& other);
74 virtual ~MBRPart();
75 virtual MBRPart& operator=(const MBRPart& orig);
76 virtual MBRPart& operator=(const struct MBRRecord& orig);
77 bool operator<(const MBRPart &other) const
    [all...]

Completed in 71 milliseconds