HomeSort by relevance Sort by last modified time
    Searched refs:myDisk (Results 1 - 7 of 7) sorted by null

  /external/gptfdisk/
basicmbr.cc 42 myDisk = NULL;
55 myDisk = NULL;
66 // Free space used by myDisk only if that's OK -- sometimes it will be
71 delete myDisk;
90 myDisk = new DiskIO;
91 if (myDisk == NULL) {
95 if (orig.myDisk != NULL)
96 myDisk->OpenForRead(orig.myDisk->GetName());
115 if (myDisk == NULL)
    [all...]
gpt.cc 146 myDisk.OpenForRead(orig.myDisk.GetName());
687 if (allOK && myDisk.OpenForRead(deviceFilename)) {
689 diskSize = myDisk.DiskSize(&err);
690 blockSize = (uint32_t) myDisk.GetBlockSize();
692 protectiveMBR.SetDisk(&myDisk);
706 protectiveMBR.ReadMBRData(&myDisk);
707 bsdDisklabel.ReadBSDData(&myDisk, 0, diskSize - 1);
746 if (myDisk.OpenForRead(deviceFilename)) {
747 err = myDisk.OpenForWrite(deviceFilename)
    [all...]
basicmbr.h 57 DiskIO* myDisk;
76 void DiskSync(void) {myDisk->DiskSync();}
bsd.cc 50 DiskIO myDisk;
53 if (myDisk.OpenForRead(device)) {
54 allOK = ReadBSDData(&myDisk, startSector, endSector);
59 myDisk.Close();
bsd.h 79 int ReadBSDData(DiskIO *myDisk, uint64_t startSector, uint64_t endSector);
gpt.h 70 DiskIO myDisk;
113 DiskIO* GetDisk(void) {return &myDisk;}
115 int WriteProtectiveMBR(void) {return protectiveMBR.WriteMBRData(&myDisk);}
gptcurses.cc 490 if (!myDisk.DiskSync())

Completed in 612 milliseconds