Lines Matching defs:Address
304 Retrieves the physical address of the FVB instance.
307 @param[out] Address Output buffer containing the address.
309 @retval EFI_SUCCESS Get the address successfully.
310 @retval Others Failed to get address.
316 OUT EFI_PHYSICAL_ADDRESS *Address
339 SmmFvbPhysicalAddressHeader->Address = 0;
349 *Address = SmmFvbPhysicalAddressHeader->Address;
357 Retrieves the physical address of the FVB instance.
360 @param[out] Address Output buffer containing the address.
362 @retval EFI_SUCCESS Get the address successfully.
363 @retval Others Failed to get the address.
370 OUT EFI_PHYSICAL_ADDRESS *Address
377 if (Address == NULL) {
384 Status = GetPhysicalAddress (SmmFvb, Address);
781 EFI_PHYSICAL_ADDRESS Address;
795 Status = GetPhysicalAddress (SmmFvb, &Address);
798 VolumeHeader = (EFI_FIRMWARE_VOLUME_HEADER *) (UINTN)Address;
808 ((FV_MEMMAP_DEVICE_PATH *) FvbDevice->DevicePath)->MemMapDevPath.StartingAddress = (UINTN)Address;
809 ((FV_MEMMAP_DEVICE_PATH *) FvbDevice->DevicePath)->MemMapDevPath.EndingAddress = (UINTN)Address + VolumeHeader->FvLength - 1;
814 (GUID *)(UINTN)((UINTN)Address + VolumeHeader->ExtHeaderOffset)