OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:protectiveMBR
(Results
1 - 3
of
3
) sorted by null
/external/gptfdisk/
gpt.h
68
MBRData
protectiveMBR
;
105
int VerifyMBR(void) {return
protectiveMBR
.FindOverlaps();}
113
int LoadMBR(const string & f) {return
protectiveMBR
.ReadMBRData(f);}
114
int WriteProtectiveMBR(void) {return
protectiveMBR
.WriteMBRData(&myDisk);}
131
void DisplayMBRData(void) {
protectiveMBR
.DisplayMBRData();}
155
void MakeProtectiveMBR(void) {
protectiveMBR
.MakeProtectiveMBR();}
158
void SetProtectiveMBR(BasicMBRData & newMBR) {
protectiveMBR
= newMBR;}
gpt.cc
125
protectiveMBR
= orig.
protectiveMBR
;
300
if (
protectiveMBR
.IsEEActive()) {
311
if (!
protectiveMBR
.DoTheyFit()) {
593
if ((
protectiveMBR
.GetType(i) != 0xEE) && (
protectiveMBR
.GetType(i) != 0x00)) {
596
mbrFirst = (uint64_t)
protectiveMBR
.GetFirstSector(i);
597
mbrLast = mbrFirst + (uint64_t)
protectiveMBR
.GetLength(i) - UINT64_C(1);
611
cout << hex << (int)
protectiveMBR
.GetType(i) << ",\n"
687
protectiveMBR
.SetDisk(&myDisk)
[
all
...]
gpttext.cc
73
mbrState =
protectiveMBR
.GetValidity();
409
// Use a local MBR structure, copying from
protectiveMBR
to keep its
411
hybridMBR =
protectiveMBR
;
484
protectiveMBR
= hybridMBR;
490
// Convert the GPT to MBR form, storing partitions in the
protectiveMBR
501
protectiveMBR
.EmptyMBR(0);
508
protectiveMBR
.MakePart(i, partitions[i].GetFirstLBA(),
513
protectiveMBR
.MakeItLegal();
514
return
protectiveMBR
.DoMenu();
[
all
...]
Completed in 60 milliseconds