Searched defs:Ip (Results 26 - 42 of 42) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/
H A DIfConfig6.c282 @param[in] Ip The pointer of Ip bufffer in EFI_IPv6_ADDRESS format.
288 IN EFI_IPv6_ADDRESS *Ip,
299 if (!Short && (Index + 1 < PREFIXMAXLEN) && (Index % 2 == 0) && (Ip->Addr[Index] == 0) && (Ip->Addr[Index + 1] == 0)) {
311 while ((Ip->Addr[Index] == 0) && (Ip->Addr[Index + 1] == 0) && (Index < PREFIXMAXLEN)) {
329 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_IFCONFIG6_INFO_IP_ADDR_BODY), mHiiHandle, Ip->Addr[Index]);
330 ShellPrintHiiEx (-1, -1, NULL, STRING_TOKEN (STR_IFCONFIG6_INFO_IP_ADDR_BODY), mHiiHandle, Ip->Addr[Index + 1]);
287 IfConfig6PrintIpAddr( IN EFI_IPv6_ADDRESS *Ip, IN UINT8 *PrefixLen ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpMisc.c61 Tcb->LocalEnd.Ip.Addr[0],
62 Tcb->RemoteEnd.Ip.Addr[0],
68 &Tcb->LocalEnd.Ip.v6,
69 &Tcb->RemoteEnd.Ip.v6,
203 @param[in] Ip Pointer to the IP address to be checked.
207 @retval TRUE Ip is all zero address.
208 @retval FALSE Ip is not all zero address.
213 IN EFI_IP_ADDRESS *Ip,
220 return (BOOLEAN) (Ip->Addr[0] == 0);
222 return (BOOLEAN) ((Ip
212 TcpIsIpZero( IN EFI_IP_ADDRESS *Ip, IN UINT8 Version ) argument
[all...]
H A DTcpProto.h193 (((Pa)->Port == (Pb)->Port) && TcpIsIpEqual(&((Pa)->Ip), &((Pb)->Ip), Ver))
202 (TcpIsIpZero (&((Pb)->Ip), Ver) || TcpIsIpEqual (&((Pb)->Ip), &((Pa)->Ip), Ver)) \
232 EFI_IP_ADDRESS Ip; ///< IP address, in network byte order. member in struct:_TCP_PEER
338 IP_IO_IP_INFO *IpInfo; ///< Pointer reference to Ip used to send pkt
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Library/
H A DIpIoLib.h238 IP_IO_IP_PROTOCOL Ip; member in struct:_IP_IO
289 IP_IO_IP_PROTOCOL Ip; member in struct:_IP_IO_SEND_ENTRY
303 IP_IO_IP_PROTOCOL Ip; member in struct:_IP_IO_IP_INFO
H A DNetLib.h201 #define IP4_IS_MULTICAST(Ip) (((Ip) & 0xF0000000) == 0xE0000000)
202 #define IP4_IS_LOCAL_BROADCAST(Ip) ((Ip) == 0xFFFFFFFF)
204 #define IP4_IS_VALID_NETMASK(Ip) (NetGetMaskLength (Ip) != IP4_MASK_NUM)
377 If Ip is 0, IP is not a valid unicast address.
378 Class D address is used for multicasting and class E address is reserved for future. If Ip
379 belongs to class D or class E, Ip is not a valid unicast address.
380 If all bits of the host address of Ip ar
1414 NET_IP_HEAD Ip; // Network layer header, for fast access member in struct:__anon11055
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Impl.c381 IP4_ADDR Ip; local
420 Ip = HTONL (IpInstance->Interface->Ip);
421 CopyMem (&Config->StationAddress, &Ip, sizeof (EFI_IPv4_ADDRESS));
423 Ip = HTONL (IpInstance->Interface->SubnetMask);
424 CopyMem (&Config->SubnetMask, &Ip, sizeof (EFI_IPv4_ADDRESS));
869 IP4_ADDR Ip; local
907 CopyMem (&Ip, &Config->StationAddress, sizeof (IP4_ADDR));
910 Ip = NTOHL (Ip);
1077 Ip4StationAddressValid( IN IP4_ADDR Ip, IN IP4_ADDR Netmask ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DIScsiBootFirmwareTable.h111 EFI_IPv6_ADDRESS Ip; member in struct:__anon11633
136 EFI_IPv6_ADDRESS Ip; member in struct:__anon11634
H A DSal.h599 UINT64 Ip; member in struct:__anon11770
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/
H A DIScsiConfig.c48 @param[in] Ip The IP address.
55 IN EFI_IP_ADDRESS *Ip,
68 Ip4 = &Ip->v4;
83 Ip6 = &Ip->v6;
153 @param[in] Ip The IP address.
162 IN EFI_IP_ADDRESS *Ip,
167 return NetIp4IsUnicast (NTOHL (Ip->Addr[0]), 0);
169 return NetIp6IsValidUnicast (&Ip->v6);
365 EFI_IP_ADDRESS Ip; local
379 CopyMem (&Ip
54 IScsiIpToStr( IN EFI_IP_ADDRESS *Ip, IN BOOLEAN Ipv6Flag, OUT CHAR16 *Str ) argument
161 IpIsUnicast( IN EFI_IP_ADDRESS *Ip, IN UINT8 IpMode ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellCommandLib/
H A DConsistMapping.c793 IPv4_DEVICE_PATH *Ip; local
799 Ip = (IPv4_DEVICE_PATH *) DevicePathNode;
804 (UINTN) Ip->LocalIpAddress.Addr[0],
805 (UINTN) Ip->LocalIpAddress.Addr[1],
806 (UINTN) Ip->LocalIpAddress.Addr[2],
807 (UINTN) Ip->LocalIpAddress.Addr[3]
810 AppendCSDNum (MappingItem, Ip->LocalPort);
815 (UINTN) Ip->RemoteIpAddress.Addr[0],
816 (UINTN) Ip->RemoteIpAddress.Addr[1],
817 (UINTN) Ip
837 IPv6_DEVICE_PATH *Ip; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellNetwork1CommandsLib/
H A DIfconfig.c1206 EFI_IP_ADDRESS Ip; local
1301 if (EFI_ERROR (NetLibStrToIp4 (Temp, &Ip.v4))) {
1347 NetworkBytes1 = NTOHL (Ip.Addr[0]);
1349 if ((Ip.Addr[0] == 0) || (Mask.Addr[0] == 0) ||
1358 if (!IP4_NET_EQUAL (Ip.Addr[0], Gateway.Addr[0], Mask.Addr[0]) ||
1375 CopyMem (&Config->Ip4Info.StationAddress, &Ip.v4, sizeof (EFI_IPv4_ADDRESS));
1378 Ip.Addr[0] = Ip.Addr[0] & Mask.Addr[0];
1380 CopyMem (&Config->Ip4Info.RouteTable[0].SubnetAddress, &Ip.v4, sizeof (EFI_IPv4_ADDRESS));
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c302 Build a syslog packet, including the Ethernet/Ip/Udp headers
634 If Ip is 0, IP is not a valid unicast address.
635 Class D address is used for multicasting and class E address is reserved for future. If Ip
639 @param[in] Ip The IP to check against.
648 IN IP4_ADDR Ip,
654 Class = NetGetIpClass (Ip);
656 if ((Ip == 0) || (Class >= IP4_ADDR_CLASSD)) {
664 if (((Ip &~NetMask) == ~NetMask) || ((Ip &~NetMask) == 0)) {
647 NetIp4IsUnicast( IN IP4_ADDR Ip, IN IP4_ADDR NetMask ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Proto.h157 UINT32 Ip; ///< IP address, network byte order member in struct:_TCP_PEER
261 IP_IO_IP_INFO *IpInfo; ///<pointer reference to Ip used to send pkt
325 (((Pa)->Ip == (Pb)->Ip) && ((Pa)->Port == (Pb)->Port))
332 ((((Pb)->Ip == 0) || ((Pb)->Ip == (Pa)->Ip)) && \
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDebugSupport.h471 UINT64 Ip; member in struct:__anon12043
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DDebugSupport.h473 UINT64 Ip; member in struct:__anon15610
/vbox/src/VBox/HostDrivers/VBoxNetFlt/win/cfg/
H A DVBoxNetCfg.cpp1330 static HRESULT netIfWinCreateIpArrayV4V6(SAFEARRAY **ppArray, BSTR Ip) argument
1336 BSTR val = bstr_t(Ip, false).copy();
1372 static HRESULT netIfWinCreateIpArrayVariantV4V6(VARIANT * pIpAddresses, BSTR Ip) argument
1378 hr = netIfWinCreateIpArrayV4V6(&pIpArray, Ip);
1454 static HRESULT netIfWinEnableStaticV4V6(IWbemServices * pSvc, const GUID * pGuid, BSTR ObjPath, BSTR Ip, BSTR Mask) argument
1457 HRESULT hr = netIfWinCreateIpArrayVariantV4V6(&ipAddresses, Ip);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwinnt.h1711 ULONG Ip; member in struct:_CONTEXT

Completed in 596 milliseconds

12