HomeSort by relevance Sort by last modified time
    Searched refs:UdpConfigData (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
Dhcp4Driver.c 123 EFI_UDP4_CONFIG_DATA UdpConfigData;
125 UdpConfigData.AcceptBroadcast = TRUE;
126 UdpConfigData.AcceptPromiscuous = FALSE;
127 UdpConfigData.AcceptAnyPort = FALSE;
128 UdpConfigData.AllowDuplicatePort = TRUE;
129 UdpConfigData.TypeOfService = 0;
130 UdpConfigData.TimeToLive = 64;
131 UdpConfigData.DoNotFragment = FALSE;
132 UdpConfigData.ReceiveTimeout = 0;
133 UdpConfigData.TransmitTimeout = 0;
    [all...]
Dhcp4Io.c 327 EFI_UDP4_CONFIG_DATA UdpConfigData;
336 UdpConfigData.AcceptBroadcast = FALSE;
337 UdpConfigData.AcceptPromiscuous = FALSE;
338 UdpConfigData.AcceptAnyPort = FALSE;
339 UdpConfigData.AllowDuplicatePort = TRUE;
340 UdpConfigData.TypeOfService = 0;
341 UdpConfigData.TimeToLive = 64;
342 UdpConfigData.DoNotFragment = FALSE;
343 UdpConfigData.ReceiveTimeout = 1;
344 UdpConfigData.TransmitTimeout = 0;
    [all...]
Dhcp4Impl.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
Udp4Main.c 106 with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
108 With different parameters in UdpConfigData, Configure() can be used to bind
112 @param[in] UdpConfigData Pointer to the buffer to receive the current configuration data.
120 @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
121 and UdpConfigData.StationPort is already used by
133 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
153 if (!Instance->Configured && (UdpConfigData == NULL)) {
162 if (UdpConfigData != NULL) {
164 CopyMem (&StationAddress, &UdpConfigData->StationAddress, sizeof (IP4_ADDR));
165 CopyMem (&SubnetMask, &UdpConfigData->SubnetMask, sizeof (IP4_ADDR));
    [all...]
Udp4Impl.h 168 with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
170 With different parameters in UdpConfigData, Configure() can be used to bind
174 @param[in] UdpConfigData Pointer to the buffer to receive the current configuration data.
182 @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
183 and UdpConfigData.StationPort is already used by
195 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
  /device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/
Udp6Main.c 108 @param[in] UdpConfigData Pointer to the buffer to set the configuration
118 UdpConfigData.StationAddress is not a valid
120 UdpConfigData.RemoteAddress is not a valid unicast
128 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE and
129 UdpConfigData.StationPort is already used by another
141 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
160 if (!Instance->Configured && (UdpConfigData == NULL)) {
170 if (UdpConfigData != NULL) {
172 IP6_COPY_ADDRESS (&StationAddress, &UdpConfigData->StationAddress);
173 IP6_COPY_ADDRESS (&RemoteAddress, &UdpConfigData->RemoteAddress);
    [all...]
Udp6Impl.h 225 @param[in] UdpConfigData Pointer to the buffer to set the configuration
236 UdpConfigData.StationAddress is not a valid
238 UdpConfigData.RemoteAddress is not a valid unicast
246 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE, and
247 UdpConfigData.StationPort is already used by another
259 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
298 UdpConfigData.RemoteAddress is unspecified.
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Udp6.h 342 This instance can be also reset by calling Configure() with UdpConfigData set to NULL.
346 With different parameters in UdpConfigData, Configure() can be used to bind this instance to specified
350 @param[in] UdpConfigData Pointer to the buffer contained the configuration data.
357 - UdpConfigData.StationAddress neither zero nor one of the configured IP
359 - UdpConfigData.RemoteAddress is not a valid unicast IPv6 address if it
365 @retval EFI_ACCESS_DENIED UdpConfigData.AllowDuplicatePort is FALSE and UdpConfigData.StationPort
377 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
444 UdpConfigData.RemoteAddress is unspecified.
Udp4.h 168 with UdpConfigData set to NULL. Once reset, the receiving queue and transmitting
170 With different parameters in UdpConfigData, Configure() can be used to bind
180 @retval EFI_INVALID_PARAMETER UdpConfigData.StationAddress is not a valid unicast IPv4 address.
181 @retval EFI_INVALID_PARAMETER UdpConfigData.SubnetMask is not a valid IPv4 address mask. The subnet
183 @retval EFI_INVALID_PARAMETER UdpConfigData.RemoteAddress is not a valid unicast IPv4 address if it
187 @retval EFI_ACCESS_DENIED UdpConfigData. AllowDuplicatePort is FALSE
188 and UdpConfigData.StationPort is already used by
200 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
  /external/syslinux/efi32/include/efi/
efiudp.h 57 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
187 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
  /external/syslinux/efi64/include/efi/
efiudp.h 57 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
187 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiudp.h 57 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL
187 IN EFI_UDP6_CONFIG_DATA *UdpConfigData OPTIONAL
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Udp4/
Udp4.h 151 IN EFI_UDP4_CONFIG_DATA *UdpConfigData OPTIONAL

Completed in 654 milliseconds