Searched refs:StationIp (Results 1 - 19 of 19) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
H A DPxeBcSupport.h37 @param StationIp Pointer to the station ip address.
61 IN EFI_IPv4_ADDRESS *StationIp,
H A DPxeBcSupport.c41 @param StationIp Pointer to the station ip address.
65 IN EFI_IPv4_ADDRESS *StationIp,
81 CopyMem (&Udp4CfgData.StationAddress, StationIp, sizeof (*StationIp));
63 PxeBcConfigureUdpWriteInstance( IN EFI_UDP4_PROTOCOL *Udp4, IN EFI_IPv4_ADDRESS *StationIp, IN EFI_IPv4_ADDRESS *SubnetMask, IN EFI_IPv4_ADDRESS *Gateway, IN OUT UINT16 *SrcPort ) argument
H A DPxeBcImpl.c186 if (!EFI_IP4_EQUAL (&RxData->Header->DestinationAddress, &Mode->StationIp.v4)) {
529 then EFI_SUCCESS is returned, and the DhcpCompleted, ProxyOfferReceived, StationIp,
643 CopyMem (&Private->StationIp, &Dhcp4Mode.ClientAddress, sizeof (EFI_IPv4_ADDRESS));
647 CopyMem (&Mode->StationIp, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
681 ArpConfigData.StationAddress = &Private->StationIp.v4;
690 Mode->RouteTable[0].IpAddr.Addr[0] = Private->StationIp.Addr[0] & Private->SubnetMask.Addr[0];
707 CopyMem (&Private->Udp4CfgData.StationAddress, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
709 CopyMem (&Private->Ip4ConfigData.StationAddress, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
1190 &Mtftp4Config.StationIp,
[all...]
H A DPxeBcImpl.h91 EFI_IP_ADDRESS StationIp; member in struct:_PXEBC_PRIVATE_DATA
H A DPxeBcDhcp.c1195 CopyMem (&Token.Packet->Dhcp4.Header.ClientAddr, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
1211 CopyMem (&Token.ListenPoints[0].ListenAddress, &Private->StationIp, sizeof(EFI_IPv4_ADDRESS));
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcSupport.c23 @param[in] StationIp The pointer to the station Ip address.
33 EFI_IP_ADDRESS *StationIp,
40 ASSERT (StationIp != NULL);
47 CopyMem (&Private->Udp6CfgData.StationAddress, StationIp, sizeof (EFI_IPv6_ADDRESS));
48 CopyMem (&Private->Ip6CfgData.StationAddress, StationIp, sizeof (EFI_IPv6_ADDRESS));
68 CopyMem (&Private->Udp4CfgData.StationAddress, StationIp, sizeof (EFI_IPv4_ADDRESS));
70 CopyMem (&Private->Ip4CfgData.StationAddress, StationIp, sizeof (EFI_IPv4_ADDRESS));
277 if (!EFI_IP4_EQUAL (&RxData->Header->DestinationAddress, &Mode->StationIp.v4)) {
412 if (!NetIp6IsUnspecifiedAddr (&Mode->StationIp.v6) &&
413 !EFI_IP6_EQUAL (&RxData->Header->DestinationAddress, &Mode->StationIp
31 PxeBcFlushStaionIp( PXEBC_PRIVATE_DATA *Private, EFI_IP_ADDRESS *StationIp, EFI_IP_ADDRESS *SubnetMask OPTIONAL ) argument
506 PxeBcConfigUdp4Write( IN EFI_UDP4_PROTOCOL *Udp4, IN EFI_IPv4_ADDRESS *StationIp, IN EFI_IPv4_ADDRESS *SubnetMask, IN EFI_IPv4_ADDRESS *Gateway, IN OUT UINT16 *SrcPort, IN BOOLEAN DoNotFragment ) argument
569 PxeBcConfigUdp6Write( IN EFI_UDP6_PROTOCOL *Udp6, IN EFI_IPv6_ADDRESS *StationIp, IN OUT UINT16 *SrcPort ) argument
[all...]
H A DPxeBcSupport.h33 @param[in] StationIp Pointer to the station Ip address.
43 EFI_IP_ADDRESS *StationIp,
132 @param[in] StationIp Pointer to the station address.
146 IN EFI_IPv4_ADDRESS *StationIp,
158 @param[in] StationIp Pointer to the station address.
168 IN EFI_IPv6_ADDRESS *StationIp,
H A DPxeBcDhcp6.c768 &Private->StationIp,
798 &Private->StationIp,
1622 &Private->StationIp,
1656 &Private->StationIp,
1775 CopyMem (&Private->StationIp.v6, &Mode.Ia->IaAddress[0].IpAddress, sizeof (EFI_IPv6_ADDRESS));
1776 CopyMem (&PxeMode->StationIp.v6, &Private->StationIp.v6, sizeof (EFI_IPv6_ADDRESS));
1778 Status = PxeBcRegisterIp6Address (Private, &Private->StationIp.v6);
1784 Status = PxeBcFlushStaionIp (Private, &Private->StationIp, NULL);
1803 PxeBcShowIp6Addr (&Private->StationIp
[all...]
H A DPxeBcImpl.h162 EFI_IP_ADDRESS StationIp; member in struct:_PXEBC_PRIVATE_DATA
H A DPxeBcDhcp4.c1390 CopyMem (&Token.Packet->Dhcp4.Header.ClientAddr, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
1406 CopyMem (&Token.ListenPoints[0].ListenAddress, &Private->StationIp, sizeof(EFI_IPv4_ADDRESS));
1571 CopyMem (&Private->StationIp, &Mode.ClientAddress, sizeof (EFI_IPv4_ADDRESS));
1574 CopyMem (&PxeMode->StationIp, &Private->StationIp, sizeof (EFI_IPv4_ADDRESS));
1577 Status = PxeBcFlushStaionIp (Private, &Private->StationIp, &Private->SubnetMask);
1589 PxeBcShowIp4Addr (&Private->StationIp.v4);
H A DPxeBcImpl.c851 CopyMem (&Mtftp6Config.StationIp, &Private->StationIp.v6, sizeof (EFI_IPv6_ADDRESS));
866 CopyMem (&Mtftp4Config.StationIp, &Private->StationIp.v4, sizeof (EFI_IPv4_ADDRESS));
1091 &Private->StationIp.v6,
1100 &Private->StationIp.v4,
1932 this function updates the StationIp field of the EFI_PXE_BASE_CODE_MODE structure
2016 CopyMem (&Mode->StationIp, NewStationIp, sizeof (EFI_IP_ADDRESS));
2017 CopyMem (&Private->StationIp, NewStationIp, sizeof (EFI_IP_ADDRESS));
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DFtp4.h101 EFI_IPv4_ADDRESS StationIp; member in struct:__anon12142
H A DMtftp4.h155 EFI_IPv4_ADDRESS StationIp; member in struct:__anon12227
H A DMtftp6.h231 EFI_IPv6_ADDRESS StationIp; member in struct:__anon12238
503 - MtftpConfigData.StationIp is neither zero nor one
H A DPxeBaseCode.h286 EFI_IP_ADDRESS StationIp; member in struct:__anon12276
406 then EFI_SUCCESS is returned, and the DhcpCompleted, ProxyOfferReceived, StationIp,
812 this function updates the StationIp field of the EFI_PXE_BASE_CODE_MODE structure
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Impl.c192 CopyMem (&Ip, &Config->StationIp, sizeof (IP4_ADDR));
295 UdpConfig.StationAddress = Config->StationIp;
585 MtftpConfigData.StationIp is not a valid IPv4
646 CopyMem (&Ip, &ConfigData->StationIp, sizeof (IP4_ADDR));
H A DMtftp4Rrq.c416 UdpConfig.StationAddress = Config->StationIp;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Mtftp6Dxe/
H A DMtftp6Impl.c116 - MtftpConfigData.StationIp is neither zero nor one
222 &Instance->Config->StationIp,
H A DMtftp6Support.c679 &Instance->Config->StationIp,

Completed in 87 milliseconds