Searched defs:Dst (Results 1 - 25 of 27) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/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 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 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 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.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
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...]
/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.c105 Search the route table for a most specific match to the Dst. It searches
119 @return NULL if no route matches the Dst. Otherwise, the point to the
120 @return most specific route to the Dst.
163 @param[in] Dst The destination address.
175 IN EFI_IPv6_ADDRESS *Dst,
192 IP6_COPY_ADDRESS (&RtCacheEntry->Destination, Dst);
174 Ip6CreateRouteCacheEntry( IN EFI_IPv6_ADDRESS *Dst, IN EFI_IPv6_ADDRESS *Src, IN EFI_IPv6_ADDRESS *GateWay, IN UINTN Tag ) argument
H A DIp6Input.c20 (Dst, Src, Id). The default life for the packet is 60 seconds.
22 @param[in] Dst The destination address.
32 IN EFI_IPv6_ADDRESS *Dst,
44 IP6_COPY_ADDRESS (&Assemble->Dst, Dst);
191 // Find the corresponding assemble entry by (Dst, Src, Id)
201 EFI_IP6_EQUAL (&Entry->Dst, &Head->DestinationAddress)
31 Ip6CreateAssembleEntry( IN EFI_IPv6_ADDRESS *Dst, IN EFI_IPv6_ADDRESS *Src, IN UINT32 Id ) argument
/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...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c743 UINT8 *Dst; local
750 Dst = Destination;
784 Sd->mDstBase = 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/MdePkg/Library/BaseUefiDecompressLib/
H A DBaseUefiDecompressLib.c747 UINT8 *Dst; local
754 Dst = Destination;
777 Sd->mDstBase = Dst;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciResourceSupport.c145 If Dst is NULL or Res is NULL, ASSERT ().
147 @param Dst Point to destination resource tree.
155 IN PCI_RESOURCE_NODE *Dst,
164 ASSERT (Dst != NULL);
173 Temp->ResType = Dst->ResType;
177 InsertResourceNode (Dst, Temp);
154 MergeResourceTree( IN PCI_RESOURCE_NODE *Dst, IN PCI_RESOURCE_NODE *Res, IN BOOLEAN TypeMerge ) argument
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcDhcp4.c424 @param[in] Dst Pointer to the cache buffer for DHCPv4 packet.
430 IN EFI_DHCP4_PACKET *Dst,
434 ASSERT (Dst->Size >= Src->Length);
436 CopyMem (&Dst->Dhcp4, &Src->Dhcp4, Src->Length);
437 Dst->Length = Src->Length;
429 PxeBcCacheDhcp4Packet( IN EFI_DHCP4_PACKET *Dst, IN EFI_DHCP4_PACKET *Src ) argument
H A DPxeBcDhcp6.c179 @param[in] Dst The pointer to the cache buffer for DHCPv6 packet.
185 IN EFI_DHCP6_PACKET *Dst,
189 ASSERT (Dst->Size >= Src->Length);
191 CopyMem (&Dst->Dhcp6, &Src->Dhcp6, Src->Length);
192 Dst->Length = Src->Length;
184 PxeBcCacheDhcp6Packet( IN EFI_DHCP6_PACKET *Dst, IN EFI_DHCP6_PACKET *Src ) argument
/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/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
H A DPxeBcDhcp.c71 @param Dst Pointer to the EFI_DHCP4_PROTOCOL instance.
77 IN EFI_DHCP4_PACKET *Dst,
81 ASSERT (Dst->Size >= Src->Length);
83 CopyMem (&Dst->Dhcp4, &Src->Dhcp4, Src->Length);
84 Dst->Length = Src->Length;
76 PxeBcCopyEfiDhcp4Packet( IN EFI_DHCP4_PACKET *Dst, IN EFI_DHCP4_PACKET *Src ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DDecompress.c740 UINT8 *Dst; local
744 Dst = Destination;
774 Sd->mDstBase = Dst;
/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...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Library/
H A DNetLib.h109 IP4_ADDR Dst; member in struct:__anon11040
1970 Src and Dst are in network byte order, and Len is in host byte order.
1973 @param[in] Dst The destination address of the packet.
1984 IN IP4_ADDR Dst,
1992 Src and Dst are in network byte order, and Len is in host byte order.
1995 @param[in] Dst The destination address of the packet.
2006 IN EFI_IPv6_ADDRESS *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/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c2649 UINT8 *Dst; local
2659 Dst = (UINT8 *)Destination;
2693 Sd->mDstBase = Dst;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface_base.c427 IWineD3DSurfaceImpl *Dst = (IWineD3DSurfaceImpl *) DstSurface; local
428 TRACE("(%p)->(%p, %p, %p, %08x, %p)\n", This, SrcRect, Dst, DstRect, Flags, FX);
453 This->overlay_destrect.right = Dst ? Dst->currentDesc.Width : 0;
454 This->overlay_destrect.bottom = Dst ? Dst->currentDesc.Height : 0;
457 if(This->overlay_dest && (This->overlay_dest != Dst || Flags & WINEDDOVER_HIDE)) {
462 if(This->overlay_dest != Dst) {
463 This->overlay_dest = Dst;
464 list_add_tail(&Dst
[all...]

Completed in 105 milliseconds

12