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

  /external/gptfdisk/
basicmbr.cc 40 myDisk = NULL;
53 myDisk = NULL;
64 // Free space used by myDisk only if that's OK -- sometimes it will be
69 delete myDisk;
88 myDisk = new DiskIO;
89 if (myDisk == NULL) {
93 if (orig.myDisk != NULL)
94 myDisk->OpenForRead(orig.myDisk->GetName());
113 if (myDisk == NULL)
    [all...]
gpt.cc 141 myDisk.OpenForRead(orig.myDisk.GetName());
682 if (allOK && myDisk.OpenForRead(deviceFilename)) {
684 diskSize = myDisk.DiskSize(&err);
685 blockSize = (uint32_t) myDisk.GetBlockSize();
687 protectiveMBR.SetDisk(&myDisk);
701 protectiveMBR.ReadMBRData(&myDisk);
702 bsdDisklabel.ReadBSDData(&myDisk, 0, diskSize - 1);
741 if (myDisk.OpenForRead(deviceFilename)) {
742 err = myDisk.OpenForWrite(deviceFilename)
    [all...]
basicmbr.h 57 DiskIO* myDisk;
76 void DiskSync(void) {myDisk->DiskSync();}
bsd.cc 48 DiskIO myDisk;
51 if (myDisk.OpenForRead(device)) {
52 allOK = ReadBSDData(&myDisk, startSector, endSector);
57 myDisk.Close();
bsd.h 79 int ReadBSDData(DiskIO *myDisk, uint64_t startSector, uint64_t endSector);
gpt.h 70 DiskIO myDisk;
112 DiskIO* GetDisk(void) {return &myDisk;}
114 int WriteProtectiveMBR(void) {return protectiveMBR.WriteMBRData(&myDisk);}
gptcurses.cc 490 if (!myDisk.DiskSync())

Completed in 3953 milliseconds