Searched refs:Dst (Results 1 - 25 of 54) sorted by relevance

123

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Common.c60 @param[in] Dst The destination address in the packet (host byte
64 @return The cast type for the Dst, it will return on the first non-promiscuous
72 IN IP4_ADDR Dst,
101 if ((Class = Ip4GetNetCast (Dst, IpIf)) > Type) {
112 if (Dst == IP4_ALLONE_ADDRESS) {
119 } else if (IP4_IS_MULTICAST (Dst) && Ip4FindGroup (&IpSb->IgmpCtrl, Dst) != NULL) {
266 Head->Dst = NTOHL (Head->Dst);
70 Ip4GetHostCast( IN IP4_SERVICE *IpSb, IN IP4_ADDR Dst, IN IP4_ADDR Src ) argument
H A DIp4Output.c27 Fragment, Ttl, Protocol, Src and Dst. All the fields
83 PacketHead->Dst = HTONL (Head->Dst);
97 @param[in] Dst The destination of the packet
107 IN IP4_ADDR Dst,
116 // Select the interface the Dst is on if one of the connected
120 IpIf = Ip4FindNet (IpSb, Dst);
191 Fragment, Protocol, Src and Dst. All the fields are
245 IpIf = Ip4SelectInterface (IpSb, Head->Dst, Head->Src);
290 Dest = Head->Dst;
105 Ip4SelectInterface( IN IP4_SERVICE *IpSb, IN IP4_ADDR Dst, IN IP4_ADDR Src ) argument
[all...]
H A DIp4Route.h25 #define IP4_ROUTE_CACHE_HASH(Dst, Src) (((Dst) ^ (Src)) % IP4_ROUTE_CACHE_HASH_VALUE)
H A DIp4Input.h56 // the same (Dst, Src, Id, Protocol).
58 IP4_ADDR Dst; member in struct:__anon6459
83 #define IP4_ASSEMBLE_HASH(Dst, Src, Id, Proto) \
84 (((Dst) + (Src) + ((Id) << 16) + (Proto)) % IP4_ASSEMLE_HASH_SIZE)
H A DIp4Icmp.c109 IP4_ADDR Dst; local
138 Dst = NTOHL (Icmp->IpHead.Dst);
140 CacheEntry = Ip4FindRouteCache (Ip4Instance->RouteTable, Dst, Src);
257 ReplyHead.Dst = Head->Src;
H A DIp4Common.h105 @param[in] Dst The destination address in the packet (host byte
109 @return The cast type for the Dst, it will return on the first non-promiscuous
117 IN IP4_ADDR Dst,
H A DIp4Input.c22 (Dst, Src, Id, Protocol). The default life for the packet is
25 @param[in] Dst The destination address
36 IN IP4_ADDR Dst,
54 Assemble->Dst = Dst;
243 Index = IP4_ASSEMBLE_HASH (IpHead->Dst, IpHead->Src, IpHead->Id, IpHead->Protocol);
248 if ((Assemble->Dst == IpHead->Dst) && (Assemble->Src == IpHead->Src) &&
259 IpHead->Dst,
761 Info->CastType = Ip4GetHostCast (IpSb, Head->Dst, Hea
35 Ip4CreateAssembleEntry( IN IP4_ADDR Dst, IN IP4_ADDR Src, IN UINT16 Id, IN UINT8 Protocol ) argument
[all...]
H A DIp4Igmp.c154 Send an IGMP protocol message to the Dst, such as IGMP v1 membership report.
158 @param[in] Dst The destinaton to send to.
171 IN IP4_ADDR Dst,
209 Head.Dst = Dst;
169 Ip4SendIgmpMessage( IN IP4_SERVICE *IpSb, IN IP4_ADDR Dst, IN UINT8 Type, IN IP4_ADDR Group ) argument
H A DIp4Route.c78 @param[in] Dst The destination address
90 IN IP4_ADDR Dst,
107 RtCacheEntry->Dest = Dst;
444 Search the route table for a most specific match to the Dst. It searches
453 @param[in] Dst The destionation address to search
455 @return NULL if no route matches the Dst, otherwise the point to the
456 most specific route to the Dst.
462 IN IP4_ADDR Dst
477 if (IP4_NET_EQUAL (RtEntry->Dest, Dst, RtEntry->Netmask)) {
89 Ip4CreateRouteCacheEntry( IN IP4_ADDR Dst, IN IP4_ADDR Src, IN IP4_ADDR GateWay, IN UINTN Tag ) argument
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
H A DIp6Input.h37 #define IP6_ASSEMBLE_HASH(Dst, Src, Id) \
38 ((*((UINT32 *) (Dst)) + *((UINT32 *) (Src)) + (Id)) % IP6_ASSEMLE_HASH_SIZE)
77 // the same (Dst, Src, Id).
79 EFI_IPv6_ADDRESS Dst; member in struct:__anon8453
H A DIp6Route.h88 @param[in] Dst The destination address.
100 IN EFI_IPv6_ADDRESS *Dst,
201 Search the route table for a most specific match to the Dst. It searches
215 @return NULL if no route matches the Dst. Otherwise the point to the
216 most specific route to the Dst.
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
H A DString.c53 OUT CHAR16 *Dst,
63 Dst Destination string
78 Dst[Index] = Src[Index];
82 Dst[Index] = 0;
241 Dst Destination string
305 OUT CHAR8 *Dst,
315 Dst Destination string
330 Dst[Index] = Src[Index];
334 Dst[Index] = 0;
52 EfiStrnCpy( OUT CHAR16 *Dst, IN CHAR16 *Src, IN UINTN Length ) argument
304 EfiAsciiStrnCpy( OUT CHAR8 *Dst, IN CHAR8 *Src, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Impl.c452 Allocate memory for configure parameter such as timeout value for Dst,
453 then copy the configure parameter from Src to Dst.
455 @param[out] Dst The destination DHCP configure data.
464 OUT EFI_DHCP4_CONFIG_DATA *Dst,
473 CopyMem (Dst, Src, sizeof (*Dst));
474 Dst->DiscoverTimeout = NULL;
475 Dst->RequestTimeout = NULL;
476 Dst->OptionList = NULL;
483 Dst
463 DhcpCopyConfigure( OUT EFI_DHCP4_CONFIG_DATA *Dst, IN EFI_DHCP4_CONFIG_DATA *Src ) argument
[all...]
/device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
H A DIpSecConfigImpl.c658 EFI_IPSEC_SPD_SELECTOR *Dst; local
661 Dst = &DstSel->SpdSelector;
664 if (Dst == NULL || Src == NULL) {
675 CopyMem (Dst, Src, sizeof (EFI_IPSEC_SPD_SELECTOR));
680 Dst->LocalAddress = (EFI_IP_ADDRESS_INFO *) (Dst + 1);
682 Dst->LocalAddress,
684 sizeof (EFI_IP_ADDRESS_INFO) * Dst->LocalAddressCount
690 Dst->RemoteAddress = Dst
722 EFI_IPSEC_SA_ID *Dst; local
764 EFI_IPSEC_PAD_ID *Dst; local
2012 IpSecDuplicateProcessPolicy( IN EFI_IPSEC_PROCESS_POLICY *Dst, IN EFI_IPSEC_PROCESS_POLICY *Src ) argument
[all...]
/device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
H A DDnsImpl.c430 Allocate memory for configure parameter such as timeout value for Dst,
431 then copy the configure parameter from Src to Dst.
433 @param[out] Dst The destination DHCP configure data.
442 OUT EFI_DNS4_CONFIG_DATA *Dst,
449 CopyMem (Dst, Src, sizeof (*Dst));
450 Dst->DnsServerList = NULL;
457 Dst->DnsServerList = AllocatePool (Len);
458 if (Dst->DnsServerList == NULL) {
459 Dns4CleanConfigure (Dst);
441 Dns4CopyConfigure( OUT EFI_DNS4_CONFIG_DATA *Dst, IN EFI_DNS4_CONFIG_DATA *Src ) argument
483 Dns6CopyConfigure( OUT EFI_DNS6_CONFIG_DATA *Dst, IN EFI_DNS6_CONFIG_DATA *Src ) argument
[all...]
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
H A DTcpInput.c714 @param[in] Dst Destination address of the segment, or the local end's IP
728 IN EFI_IP_ADDRESS *Dst,
760 Checksum = NetPseudoHeadChecksum (Src->Addr[0], Dst->Addr[0], 6, 0);
762 Checksum = NetIp6PseudoHeadChecksum (&Src->v6, &Dst->v6, 6, 0);
782 Dst,
878 IP6_COPY_ADDRESS (&Tcb->LocalEnd.Ip, Dst);
1504 TcpSendReset (Tcb, Head, Len, Dst, Src, Version);
1516 TcpSendReset (Tcb, Head, Len, Dst, Src, Version);
1542 @param[in] Dst Destination address of the ICMP error message.
1552 IN EFI_IP_ADDRESS *Dst,
725 TcpInput( IN NET_BUF *Nbuf, IN EFI_IP_ADDRESS *Src, IN EFI_IP_ADDRESS *Dst, IN UINT8 Version ) argument
1548 TcpIcmpInput( IN NET_BUF *Nbuf, IN UINT8 IcmpErr, IN EFI_IP_ADDRESS *Src, IN EFI_IP_ADDRESS *Dst, IN UINT8 Version ) argument
[all...]
H A DTcpFunc.h471 @param[in] Dst Destination address of the ICMP error message.
481 IN EFI_IP_ADDRESS *Dst,
490 @param[in] Dst Destination address of the segment, or the local end's IP
504 IN EFI_IP_ADDRESS *Dst,
/device/linaro/bootloader/edk2/EmbeddedPkg/Drivers/Lan9118Dxe/
H A DLan9118Dxe.c1323 EFI_MAC_ADDRESS Dst; local
1479 Dst.Addr[0] = (RawData[0] & 0xFF);
1480 Dst.Addr[1] = (RawData[0] & 0xFF00) >> 8;
1481 Dst.Addr[2] = (RawData[0] & 0xFF0000) >> 16;
1482 Dst.Addr[3] = (RawData[0] & 0xFF000000) >> 24;
1483 Dst.Addr[4] = (RawData[1] & 0xFF);
1484 Dst.Addr[5] = (RawData[1] & 0xFF00) >> 8;
1485 CopyMem (DstAddr, &Dst, NET_ETHER_ADDR_LEN);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Func.h430 @param Dst Destination address of the ICMP error message.
438 IN UINT32 Dst
446 @param Dst Destination address of the segment, or the local end's IP
458 IN UINT32 Dst
H A DTcp4Input.c683 @param Dst Destination address of the segment, or the local end's IP
695 IN UINT32 Dst
717 (TcpChecksum (Nbuf, NetPseudoHeadChecksum (Src, Dst, 6, 0)) != 0)) {
733 Dst,
813 Tcb->LocalEnd.Ip = Dst;
1369 TcpSendReset (Tcb, Head, Len, Dst, Src);
1381 TcpSendReset (Tcb, Head, Len, Dst, Src);
1408 @param Dst Destination address of the ICMP error message.
1416 IN UINT32 Dst
1430 Dst,
[all...]
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
H A DX11GraphicsWindow.c729 UINT8 *Dst; local
793 Dst = Private->image_data + (Args->DestinationX << Private->pixel_shift)
800 memcpy (Dst, Src, Nbr);
801 Dst += Private->line_bytes;
805 Dst += (Args->Height - 1) * Private->line_bytes;
809 // Source and Destination Y may be equal, therefore Dst and Src may
812 memmove (Dst, Src, Nbr);
813 Dst -= Private->line_bytes;
/device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
H A DXenStore.c186 @param Dst An array to store pointers to each string found in strings.
195 OUT CONST CHAR8 **Dst OPTIONAL
202 if (Dst != NULL) {
203 *Dst++ = Ptr;
236 CONST CHAR8 **Dst; local
250 Dst = AllocatePool (*NumPtr * sizeof (CHAR8 *) + Len);
251 CopyMem ((VOID*)&Dst[*NumPtr], Strings, Len);
255 Strings = (CHAR8 *) &Dst[*NumPtr];
256 ExtractStrings (Strings, Len, Dst);
258 return (Dst);
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c779 UINT8 *Dst; local
786 Dst = Destination;
812 Sd->mDstBase = Dst;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiStrGather/
H A DStringDB.c92 WCHAR *Dst,
1970 WCHAR *Dst,
1975 WCHAR *Bak = Dst;
1978 return Dst;
1981 if (Dst != NULL) {
1982 Len = wcslen (Dst);
1985 Dst = (WCHAR *) malloc ((Len + 1) * 2);
1986 if (Dst == NULL) {
1990 Dst[0] = L'\0';
1992 wcscpy (Dst, Ba
1969 WstrCatenate( WCHAR *Dst, WCHAR *Src ) argument
[all...]
/device/linaro/bootloader/edk2/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c748 UINT8 *Dst; local
755 Dst = Destination;
778 Sd->mDstBase = Dst;

Completed in 328 milliseconds

123