HomeSort by relevance Sort by last modified time
    Searched defs:RemoteAddress (Results 1 - 25 of 33) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetNetByAddr/
GetNetByAddr.c 42 UINT32 RemoteAddress[4];
52 &RemoteAddress[0],
53 &RemoteAddress[1],
54 &RemoteAddress[2],
55 &RemoteAddress[3]))
56 || ( 255 < RemoteAddress[0])
57 || ( 255 < RemoteAddress[1])
58 || ( 255 < RemoteAddress[2])
59 || ( 255 < RemoteAddress[3])) {
66 IpAddress[0] = (UINT8)RemoteAddress[0];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/GetHostByAddr/
GetHostByAddr.c 48 UINT32 RemoteAddress[4];
56 &RemoteAddress[0],
57 &RemoteAddress[1],
58 &RemoteAddress[2],
59 &RemoteAddress[3]))
60 || ( 255 < RemoteAddress[0])
61 || ( 255 < RemoteAddress[1])
62 || ( 255 < RemoteAddress[2])
63 || ( 255 < RemoteAddress[3])) {
70 IpAddress[0] = (UINT8)RemoteAddress[0];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/RawIp4Tx/
RawIp4Tx.c 37 UINT32 RemoteAddress[4];
62 &RemoteAddress[0],
63 &RemoteAddress[1],
64 &RemoteAddress[2],
65 &RemoteAddress[3]))
66 || ( 224 < RemoteAddress[0])
67 || ( 255 < RemoteAddress[1])
68 || ( 255 < RemoteAddress[2])
69 || ( 255 < RemoteAddress[3])
70 || (( 0 == RemoteAddress[0])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/OobTx/
OobTx.c 41 UINT32 RemoteAddress[4];
68 &RemoteAddress[0],
69 &RemoteAddress[1],
70 &RemoteAddress[2],
71 &RemoteAddress[3]))
72 || ( 224 < RemoteAddress[0])
73 || ( 255 < RemoteAddress[1])
74 || ( 255 < RemoteAddress[2])
75 || ( 255 < RemoteAddress[3])
76 || (( 0 == RemoteAddress[0])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
WebServer.c 328 struct sockaddr_in6 RemoteAddress;
352 RemoteAddressLength = sizeof ( RemoteAddress );
354 (struct sockaddr *)&RemoteAddress,
HTTP.c 396 struct sockaddr_in6 RemoteAddress;
408 RetVal = getpeername ( SocketFD, (struct sockaddr *)&RemoteAddress, &LengthInBytes );
429 Status = HttpSendIpAddress ( SocketFD, pPort, &RemoteAddress );
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
Udp4Main.c 142 IP4_ADDR RemoteAddress;
166 CopyMem (&RemoteAddress, &UdpConfigData->RemoteAddress, sizeof (IP4_ADDR));
170 RemoteAddress = NTOHL (RemoteAddress);
176 IP4_IS_LOCAL_BROADCAST (RemoteAddress))) {
179 // a valid unicast IPv4 address or RemoteAddress is not a valid unicast IPv4 address
250 CopyMem (&RemoteAddr, &Instance->ConfigData.RemoteAddress, sizeof (IP4_ADDR));
627 CopyMem (&Destination, &ConfigData->RemoteAddress, sizeof (IP4_ADDR));
  /device/linaro/bootloader/edk2/NetworkPkg/Udp6Dxe/
Udp6Main.c 120 UdpConfigData.RemoteAddress is not a valid unicast
149 EFI_IPv6_ADDRESS RemoteAddress;
173 IP6_COPY_ADDRESS (&RemoteAddress, &UdpConfigData->RemoteAddress);
176 (!NetIp6IsUnspecifiedAddr (&RemoteAddress) && !NetIp6IsValidUnicast (&RemoteAddress))
180 // if it is not IPv6 address or RemoteAddress is not a valid unicast IPv6
252 IP6_COPY_ADDRESS (&RemoteAddr, &Instance->ConfigData.RemoteAddress);
435 instance's UdpConfigData.RemoteAddress is unspecified.
558 IP6_COPY_ADDRESS (&Destination, &ConfigData->RemoteAddress);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSink/
DataSink.c 279 struct sockaddr_in6 RemoteAddress;
287 pRemoteAddress4 = (struct sockaddr_in *)&RemoteAddress;
288 pRemoteAddress6 = (struct sockaddr_in6 *)&RemoteAddress;
458 LengthInBytes = sizeof ( RemoteAddress );
460 (struct sockaddr *) &RemoteAddress,
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Udp6.h 58 EFI_IPv6_ADDRESS RemoteAddress;
177 /// If RemoteAddress is not 0::/128, this EFI UDPv6 Protocol instance will be connected to
178 /// RemoteAddress; i.e., outgoing packets of this EFI UDPv6 Protocol instance will be sent
181 EFI_IPv6_ADDRESS RemoteAddress;
186 /// to client. Ignored if RemoteAddress is 0::/128 and ignored for incoming filtering if
359 - UdpConfigData.RemoteAddress is not a valid unicast IPv6 address if it
444 UdpConfigData.RemoteAddress is unspecified.
Udp4.h 48 EFI_IPv4_ADDRESS RemoteAddress;
96 EFI_IPv4_ADDRESS RemoteAddress;
183 @retval EFI_INVALID_PARAMETER UdpConfigData.RemoteAddress is not a valid unicast IPv4 address if it
Dhcp4.h 384 EFI_IPv4_ADDRESS RemoteAddress;
700 Token.RemoteAddress is zero.
    [all...]
Tcp4.h 46 EFI_IPv4_ADDRESS RemoteAddress;
65 EFI_IPv4_ADDRESS RemoteAddress;
Tcp6.h 64 EFI_IPv6_ADDRESS RemoteAddress;
105 /// RemoteAddress. If ActiveFlag is TRUE the instance will
106 /// connect to the RemoteAddress, i.e., outgoing segments will be
112 EFI_IPv6_ADDRESS RemoteAddress;
542 - Tcp6ConfigData->AccessPoint.RemoteAddress isn't a valid unicast
544 - Tcp6ConfigData->AccessPoint.RemoteAddress is zero or
    [all...]
IpSecConfig.h 92 /// Specifies the actual number of entries in RemoteAddress.
99 EFI_IP_ADDRESS_INFO *RemoteAddress;
346 /// Bit 1: EFI_IPSEC_SPD_SELECTOR.RemoteAddress
  /device/linaro/bootloader/edk2/StdLib/EfiSocketLib/
Tcp4.c 117 UINT32 RemoteAddress;
155 RemoteAddress = pTcp4->ConfigData.AccessPoint.RemoteAddress.Addr[3];
156 RemoteAddress <<= 8;
157 RemoteAddress |= pTcp4->ConfigData.AccessPoint.RemoteAddress.Addr[2];
158 RemoteAddress <<= 8;
159 RemoteAddress |= pTcp4->ConfigData.AccessPoint.RemoteAddress.Addr[1];
160 RemoteAddress <<= 8;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/DataSource/
DataSource.c 195 UINT32 RemoteAddress;
237 RemoteAddress = Value1
241 pRemoteAddress4->sin_addr.s_addr = RemoteAddress;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Udp4/
Udp4.h 39 EFI_IPv4_ADDRESS RemoteAddress;
97 EFI_IPv4_ADDRESS RemoteAddress;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.h 174 struct sockaddr_in6 RemoteAddress; ///< Remote address
252 } RemoteAddress; ///< Remote address
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Dhcp4/
Dhcp4.h 144 EFI_IPv4_ADDRESS RemoteAddress;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Tcp4/
Tcp4.h 48 EFI_IPv4_ADDRESS RemoteAddress;
63 EFI_IPv4_ADDRESS RemoteAddress;
  /external/syslinux/efi32/include/efi/
efiudp.h 39 EFI_IPv4_ADDRESS RemoteAddress;
169 EFI_IPv6_ADDRESS RemoteAddress;
efitcp.h 29 EFI_IPv4_ADDRESS RemoteAddress;
236 EFI_IPv6_ADDRESS RemoteAddress;
  /external/syslinux/efi64/include/efi/
efiudp.h 39 EFI_IPv4_ADDRESS RemoteAddress;
169 EFI_IPv6_ADDRESS RemoteAddress;
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiudp.h 39 EFI_IPv4_ADDRESS RemoteAddress;
169 EFI_IPv6_ADDRESS RemoteAddress;

Completed in 984 milliseconds

1 2