OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MBRPart
(Results
1 - 2
of
2
) sorted by null
/external/gptfdisk/
mbrpart.cc
2
MBRPart
class, part of GPT fdisk program family.
27
#include "
mbrpart
.h"
31
uint32_t
MBRPart
::numHeads = MAX_HEADS;
32
uint32_t
MBRPart
::numSecspTrack = MAX_SECSPERTRACK;
33
uint64_t
MBRPart
::diskSize = 0;
34
uint32_t
MBRPart
::blockSize = 512;
35
int
MBRPart
::numInstances = 0;
37
MBRPart
::
MBRPart
() {
60
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 129 milliseconds