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

/device/linaro/bootloader/edk2/FatPkg/FatPei/
H A DPart.c17 #include <IndustryStandard/Mbr.h>
40 This function finds Mbr partitions. Main algorithm
310 Test to see if the Mbr buffer is a valid MBR
312 @param Mbr Parent Handle
315 @retval TRUE Mbr is a Valid MBR
316 @retval FALSE Mbr is not a Valid MBR
321 IN MASTER_BOOT_RECORD *Mbr,
332 if (Mbr->Signature != MBR_SIGNATURE) {
340 if (Mbr->Partition[Index1].OSIndicator == 0x00 || UNPACK_UINT32 (Mbr
320 PartitionValidMbr( IN MASTER_BOOT_RECORD *Mbr, IN EFI_PEI_LBA LastLba ) argument
402 MASTER_BOOT_RECORD *Mbr; local
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Disk/PartitionDxe/
H A DMbr.c29 Test to see if the Mbr buffer is a valid MBR.
31 @param Mbr Parent Handle.
34 @retval TRUE Mbr is a Valid MBR.
35 @retval FALSE Mbr is not a Valid MBR.
40 IN MASTER_BOOT_RECORD *Mbr,
51 if (Mbr->Signature != MBR_SIGNATURE) {
59 if (Mbr->Partition[Index1].OSIndicator == 0x00 || UNPACK_UINT32 (Mbr->Partition[Index1].SizeInLBA) == 0) {
64 StartingLBA = UNPACK_UINT32 (Mbr->Partition[Index1].StartingLBA);
65 EndingLBA = StartingLBA + UNPACK_UINT32 (Mbr
39 PartitionValidMbr( IN MASTER_BOOT_RECORD *Mbr, IN EFI_LBA LastLba ) argument
133 MASTER_BOOT_RECORD *Mbr; local
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/BootSectImage/
H A Dbootsectimage.c733 MASTER_BOOT_RECORD Mbr; local
735 if (ReadFromFile ((void *)&Mbr, FileName) == 0) {
744 printf (" 1B8 Windows disk signature %08x\n", (unsigned) Mbr.UniqueMbrSignature);
747 printf (" 1BE 80 = active partition %02x\n", Mbr.PartitionRecord[0].BootIndicator);
748 printf (" 1BF Start head %02x\n", Mbr.PartitionRecord[0].StartHead);
749 printf (" 1C0 Start sector %02x\n", Mbr.PartitionRecord[0].StartSector);
750 printf (" 1C1 Start cylinder %02x\n", Mbr.PartitionRecord[0].StartTrack);
751 printf (" 1C2 Partition type indicator %02x\n", Mbr.PartitionRecord[0].OSType);
752 printf (" 1C3 End head %02x\n", Mbr.PartitionRecord[0].EndHead);
753 printf (" 1C4 End sector %02x\n", Mbr
[all...]

Completed in 58 milliseconds