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

12

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Input.h56 // the same (Dst, Src, Id, Protocol).
58 IP4_ADDR Dst; member in struct:__anon11225
83 #define IP4_ASSEMBLE_HASH(Dst, Src, Id, Proto) \
84 (((Dst) + (Src) + ((Id) << 16) + (Proto)) % IP4_ASSEMLE_HASH_SIZE)
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
240 IpIf = Ip4SelectInterface (IpSb, Head->Dst, Head->Src);
282 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 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 DIp4Icmp.c109 IP4_ADDR Dst; local
138 Dst = NTOHL (Icmp->IpHead.Dst);
140 CacheEntry = Ip4FindRouteCache (Ip4Instance->RouteTable, Dst, Src);
256 ReplyHead.Dst = Head->Src;
H A DIp4Common.h102 @param[in] Dst The destination address in the packet (host byte
106 @return The cast type for the Dst, it will return on the first non-promiscuous
114 IN IP4_ADDR Dst,
H A DIp4Input.c20 (Dst, Src, Id, Protocol). The default life for the packet is
23 @param[in] Dst The destination address
34 IN IP4_ADDR Dst,
52 Assemble->Dst = Dst;
241 Index = IP4_ASSEMBLE_HASH (IpHead->Dst, IpHead->Src, IpHead->Id, IpHead->Protocol);
246 if ((Assemble->Dst == IpHead->Dst) && (Assemble->Src == IpHead->Src) &&
257 IpHead->Dst,
754 Info->CastType = Ip4GetHostCast (IpSb, Head->Dst, Hea
33 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
/vbox/src/VBox/Devices/EFI/Firmware/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:__anon12499
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.
/vbox/src/VBox/Devices/EFI/Firmware/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...]
/vbox/src/VBox/Devices/EFI/Firmware/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...]
H A DIpSecImpl.c464 &((IP4_HEAD *) IpHead)->Dst,
621 CopyMem (&DstAddr, &Ip4->Dst, sizeof (IP4_ADDR));
856 &((IP4_HEAD *) IpHead)->Dst,
1055 &((IP4_HEAD *)IpPayload)->Dst,
1098 ((IP4_HEAD *)IpPayload)->Dst,
1316 ((IP4_HEAD *)InnerHead)->Dst,
2018 &((IP4_HEAD *) IpHead)->Dst,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DSetup.c1202 UINT8 *Dst; local
1336 Dst = Question->BufferValue;
1338 Dst = (UINT8 *) QuestionValue;
1346 Dst
1361 Dst = Question->BufferValue;
1366 Dst = (UINT8 *) &Question->HiiValue.Value;
1381 CopyMem (Dst, Storage->EditBuffer + Question->VarStoreInfo.VarOffset, StorageWidth);
1401 StringPtr = (CHAR16 *) Dst;
1421 Dst [Index/2] = DigitUint8;
1423 Dst [Inde
2049 UINT8 *Dst; local
2533 UINT8 *Dst; local
3343 CopyStorage( IN OUT FORMSET_STORAGE *Dst, IN FORMSET_STORAGE *Src ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpInput.c715 @param[in] Dst Destination address of the segment, or the local end's IP
729 IN EFI_IP_ADDRESS *Dst,
761 Checksum = NetPseudoHeadChecksum (Src->Addr[0], Dst->Addr[0], 6, 0);
763 Checksum = NetIp6PseudoHeadChecksum (&Src->v6, &Dst->v6, 6, 0);
783 Dst,
879 IP6_COPY_ADDRESS (&Tcb->LocalEnd.Ip, Dst);
1493 TcpSendReset (Tcb, Head, Len, Dst, Src, Version);
1505 TcpSendReset (Tcb, Head, Len, Dst, Src, Version);
1531 @param[in] Dst Destination address of the ICMP error message.
1541 IN EFI_IP_ADDRESS *Dst,
726 TcpInput( IN NET_BUF *Nbuf, IN EFI_IP_ADDRESS *Src, IN EFI_IP_ADDRESS *Dst, IN UINT8 Version ) argument
1537 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.h496 @param[in] Dst Destination address of the ICMP error message.
506 IN EFI_IP_ADDRESS *Dst,
515 @param[in] Dst Destination address of the segment, or the local end's IP
529 IN EFI_IP_ADDRESS *Dst,
/vbox/src/VBox/Devices/EFI/Firmware/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.c684 @param Dst Destination address of the segment, or the local end's IP
696 IN UINT32 Dst
717 (TcpChecksum (Nbuf, NetPseudoHeadChecksum (Src, Dst, 6, 0)) != 0)) {
733 Dst,
813 Tcb->LocalEnd.Ip = Dst;
1368 TcpSendReset (Tcb, Head, Len, Dst, Src);
1380 TcpSendReset (Tcb, Head, Len, Dst, Src);
1407 @param Dst Destination address of the ICMP error message.
1415 IN UINT32 Dst
1428 Dst,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c747 UINT8 *Dst; local
754 Dst = Destination;
777 Sd->mDstBase = Dst;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiProto.h115 #define HTON24(Dst, Src) \
117 (Dst)[0] = (UINT8) (((Src) >> 16) & 0xFF); \
118 (Dst)[1] = (UINT8) (((Src) >> 8) & 0xFF); \
119 (Dst)[2] = (UINT8) ((Src) & 0xFF); \
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/
H A DIScsiProto.h107 #define HTON24(Dst, Src) \
109 (Dst)[0] = (UINT8) ((UINT8) ((Src) >> 16) & 0xFF); \
110 (Dst)[1] = (UINT8) ((UINT8) ((Src) >> 8) & 0xFF); \
111 (Dst)[2] = (UINT8) ((UINT8) (Src) & 0xFF); \
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyImage-win.cpp1542 UNICODE_STRING Dst; local
1543 Dst.Buffer = &s_aPaths[i].pNtPath->awcBuffer[4];
1544 Dst.MaximumLength = sizeof(s_aPaths[i].pNtPath->awcBuffer) - sizeof(WCHAR) * 5;
1545 Dst.Length = Dst.MaximumLength;
1548 rcNt = RtlExpandEnvironmentStrings_U(NULL, &Src, &Dst, NULL);
1551 memcpy(Dst.Buffer, Src.Buffer, Src.Length);
1552 Dst.Length = Src.Length;
1556 Dst.Buffer[Dst
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DNetBuffer.c298 UINT8 *Dst; local
317 Dst = NetbufAllocSpace (Duplicate, Nbuf->TotalSize, NET_BUF_TAIL);
318 NetbufCopy (Nbuf, 0, Nbuf->TotalSize, Dst);
1773 Src and Dst are in network byte order, and Len is in host byte order.
1776 @param[in] Dst The destination address of the packet.
1787 IN IP4_ADDR Dst,
1800 Hdr.DstIp = Dst;
1810 Src and Dst are in network byte order, and Len is in host byte order.
1813 @param[in] Dst The destination address of the packet.
1824 IN EFI_IPv6_ADDRESS *Dst,
1785 NetPseudoHeadChecksum( IN IP4_ADDR Src, IN IP4_ADDR Dst, IN UINT8 Proto, IN UINT16 Len ) argument
1822 NetIp6PseudoHeadChecksum( IN EFI_IPv6_ADDRESS *Src, IN EFI_IPv6_ADDRESS *Dst, IN UINT8 NextHeader, IN UINT32 Len ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c743 UINT8 *Dst; local
750 Dst = Destination;
784 Sd->mDstBase = Dst;

Completed in 110 milliseconds

12