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
;
106
int VerifyMBR(void) {return
protectiveMBR
.FindOverlaps();}
114
int LoadMBR(const string & f) {return
protectiveMBR
.ReadMBRData(f);}
115
int WriteProtectiveMBR(void) {return
protectiveMBR
.WriteMBRData(&myDisk);}
132
void DisplayMBRData(void) {
protectiveMBR
.DisplayMBRData();}
156
void MakeProtectiveMBR(void) {
protectiveMBR
.MakeProtectiveMBR();}
159
void SetProtectiveMBR(BasicMBRData & newMBR) {
protectiveMBR
= newMBR;}
gpt.cc
129
protectiveMBR
= orig.
protectiveMBR
;
305
if (
protectiveMBR
.IsEEActive()) {
316
if (!
protectiveMBR
.DoTheyFit()) {
598
if ((
protectiveMBR
.GetType(i) != 0xEE) && (
protectiveMBR
.GetType(i) != 0x00)) {
601
mbrFirst = (uint64_t)
protectiveMBR
.GetFirstSector(i);
602
mbrLast = mbrFirst + (uint64_t)
protectiveMBR
.GetLength(i) - UINT64_C(1);
616
cout << hex << (int)
protectiveMBR
.GetType(i) << ",\n"
692
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 313 milliseconds