Home | History | Annotate | Download | only in UefiPxeBcDxe

Lines Matching defs:Entry

473   PXEBC_BOOT_SVR_ENTRY        *Entry;

501 Entry = VendorOpt->BootSvr;
502 if (VendorOpt->BootSvrLen >= sizeof (PXEBC_BOOT_SVR_ENTRY) && Entry->IpCnt > 0) {
505 &Entry->IpAddr[0],
697 Extract the discover information and boot server entry from the
722 PXEBC_BOOT_SVR_ENTRY *Entry;
744 Entry = NULL;
757 // Parse the boot server entry from the vendor option in the last cached packet.
774 Entry = VendorOpt->BootSvr;
776 while (((UINT8) (Entry - VendorOpt->BootSvr)) < VendorOpt->BootSvrLen) {
777 if (Entry->Type == HTONS (Type)) {
781 Entry = GET_NEXT_BOOT_SVR_ENTRY (Entry);
788 Info->IpCnt = Entry->IpCnt;
799 CopyMem (&Info->SrvList[Index].IpAddr, &Entry->IpAddr[Index], sizeof (EFI_IPv4_ADDRESS));
801 Info->SrvList[Index].Type = NTOHS (Entry->Type);
805 *BootEntry = Entry;