Searched defs:Mbr (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Disk/PartitionDxe/
H A DMbr.c28 Test to see if the Mbr buffer is a valid MBR.
30 @param Mbr Parent Handle.
33 @retval TRUE Mbr is a Valid MBR.
34 @retval FALSE Mbr is not a Valid MBR.
39 IN MASTER_BOOT_RECORD *Mbr,
50 if (Mbr->Signature != MBR_SIGNATURE) {
58 if (Mbr->Partition[Index1].OSIndicator == 0x00 || UNPACK_UINT32 (Mbr->Partition[Index1].SizeInLBA) == 0) {
63 StartingLBA = UNPACK_UINT32 (Mbr->Partition[Index1].StartingLBA);
64 EndingLBA = StartingLBA + UNPACK_UINT32 (Mbr
38 PartitionValidMbr( IN MASTER_BOOT_RECORD *Mbr, IN EFI_LBA LastLba ) argument
127 MASTER_BOOT_RECORD *Mbr; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/PartitionDxe/
H A DMbr.c3 * Mbr.c
54 Test to see if the Mbr buffer is a valid MBR.
56 @param Mbr Parent Handle.
59 @retval TRUE Mbr is a Valid MBR.
60 @retval FALSE Mbr is not a Valid MBR.
65 IN MASTER_BOOT_RECORD *Mbr,
76 if (Mbr->Signature != MBR_SIGNATURE) {
84 if (Mbr->Partition[Index1].OSIndicator == 0x00 || UNPACK_UINT32 (Mbr->Partition[Index1].SizeInLBA) == 0) {
89 StartingLBA = UNPACK_UINT32 (Mbr
64 PartitionValidMbr( IN MASTER_BOOT_RECORD *Mbr, IN EFI_LBA LastLba ) argument
153 MASTER_BOOT_RECORD *Mbr; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/BootSectImage/
H A Dbootsectimage.c731 MASTER_BOOT_RECORD Mbr; local
733 if (ReadFromFile ((void *)&Mbr, FileName) == 0) {
742 printf (" 1B8 Windows disk signature %08x\n", (unsigned) Mbr.UniqueMbrSignature);
745 printf (" 1BE 80 = active partition %02x\n", Mbr.PartitionRecord[0].BootIndicator);
746 printf (" 1BF Start head %02x\n", Mbr.PartitionRecord[0].StartHead);
747 printf (" 1C0 Start sector %02x\n", Mbr.PartitionRecord[0].StartSector);
748 printf (" 1C1 Start cylinder %02x\n", Mbr.PartitionRecord[0].StartTrack);
749 printf (" 1C2 Partition type indicator %02x\n", Mbr.PartitionRecord[0].OSType);
750 printf (" 1C3 End head %02x\n", Mbr.PartitionRecord[0].EndHead);
751 printf (" 1C4 End sector %02x\n", Mbr
[all...]

Completed in 34 milliseconds