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

12

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DMisc.c32 EFI_EDITOR_LINE *Dest; local
37 Dest = AllocateZeroPool (sizeof (EFI_EDITOR_LINE));
38 if (Dest == NULL) {
44 Dest->Buffer = CatSPrint (NULL, L"%s", Src->Buffer);
45 if (Dest->Buffer == NULL) {
46 FreePool (Dest);
53 Dest->Signature = LINE_LIST_SIGNATURE;
54 Dest->Size = Src->Size;
55 Dest->TotalSize = Dest
[all...]
H A DFileBuffer.c1711 Concatenate Src into Dest.
1713 @param[in, out] Dest Destination string
1719 IN OUT EFI_EDITOR_LINE *Dest,
1726 Size = Dest->Size;
1728 Dest->Buffer[Size] = 0;
1733 Str = CatSPrint (NULL, L"%s%s", Dest->Buffer, Src->Buffer);
1735 Dest->Buffer = NULL;
1739 Dest->Size = Size + Src->Size;
1740 Dest->TotalSize = Dest
1718 LineCat( IN OUT EFI_EDITOR_LINE *Dest, IN EFI_EDITOR_LINE *Src ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/String/
H A DComparison.c76 resulting string into the array pointed to by Dest. The transformation is
81 pointed to by Dest, including the terminating null character. If Len is zero,
82 Dest is permitted to be a null pointer. If copying takes place between
87 returned is Len or more, the contents of the array pointed to by Dest
90 size_t strxfrm(char * __restrict Dest, const char * __restrict Src, size_t Len) argument
100 (void)memcpy(Dest, Src, copysize);
101 Dest[copysize] = 0;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpIo.c42 TcpInput (Pkt, &NetSession->Source, &NetSession->Dest, NetSession->IpVersion);
48 &NetSession->Dest,
60 @param[in] Dest Destination address of the TCP segment.
72 IN EFI_IP_ADDRESS *Dest,
113 // the destination address can't be overridden, so reset the Dest to NULL.
115 Dest = NULL;
134 Status = IpIoSend (IpIo, Nbuf, IpSender, NULL, NULL, Dest, &Override);
68 TcpSendIpPacket( IN TCP_CB *Tcb, IN NET_BUF *Nbuf, IN EFI_IP_ADDRESS *Src, IN EFI_IP_ADDRESS *Dest, IN UINT8 Version ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4Dxe/
H A DIp4Route.h28 /// The route entry in the route table. Dest/Netmask is the destion
30 /// order to reach the Dest/Netmask. If the Flag has IP4_DIRECT_ROUTE
37 IP4_ADDR Dest; member in struct:__anon11227
56 IP4_ADDR Dest; member in struct:__anon11228
120 @param[in] Dest The destination of the network
132 IN IP4_ADDR Dest,
141 @param Dest The destination network
142 @param Netmask The netmask of the Dest
153 IN IP4_ADDR Dest,
165 @param[in] Dest Th
[all...]
H A DIp4Output.c225 IP4_ADDR Dest; local
282 Dest = Head->Dst;
284 if (IP4_IS_BROADCAST (Ip4GetNetCast (Dest, IpIf)) || (Dest == IP4_ALLONE_ADDRESS)) {
286 // Set the gateway to local broadcast if the Dest is
292 } else if (IP4_IS_MULTICAST (Dest)) {
H A DIp4Route.c18 Allocate a route entry then initialize it with the Dest/Netmaks
21 @param[in] Dest The destination network
31 IN IP4_ADDR Dest,
47 RtEntry->Dest = Dest;
107 RtCacheEntry->Dest = Dst;
300 @param[in] Dest The destination of the network
312 IN IP4_ADDR Dest,
333 if (IP4_NET_EQUAL (RtEntry->Dest, Dest, Netmas
30 Ip4CreateRouteEntry( IN IP4_ADDR Dest, IN IP4_ADDR Netmask, IN IP4_ADDR GateWay ) argument
310 Ip4AddRoute( IN OUT IP4_ROUTE_TABLE *RtTable, IN IP4_ADDR Dest, IN IP4_ADDR Netmask, IN IP4_ADDR Gateway ) argument
372 Ip4DelRoute( IN OUT IP4_ROUTE_TABLE *RtTable, IN IP4_ADDR Dest, IN IP4_ADDR Netmask, IN IP4_ADDR Gateway ) argument
418 Ip4FindRouteCache( IN IP4_ROUTE_TABLE *RtTable, IN IP4_ADDR Dest, IN IP4_ADDR Src ) argument
503 Ip4Route( IN IP4_ROUTE_TABLE *RtTable, IN IP4_ADDR Dest, IN IP4_ADDR Src ) argument
[all...]
H A DIp4Impl.c1523 IP4_ADDR Dest; local
1550 CopyMem (&Dest, SubnetAddress, sizeof (IP4_ADDR));
1554 Dest = NTOHL (Dest);
1577 Status = Ip4DelRoute (IpInstance->RouteTable, Dest, Netmask, Nexthop);
1579 Status = Ip4AddRoute (IpInstance->RouteTable, Dest, Netmask, Nexthop);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DBmLib.c267 CHAR16 *Dest; local
271 Dest = AllocateZeroPool (Size);
272 ASSERT (Dest != NULL);
273 if (Dest != NULL) {
274 CopyMem (Dest, Src, Size);
277 return Dest;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCp.c50 @param[in] Dest pointer to destination file name
60 IN CONST CHAR16 *Dest,
86 if (StrCmp(Source, Dest) == 0) {
93 Status = ShellOpenFileByName(Dest, &DestHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE, 0);
137 Status = ShellCreateDirectory(Dest, &DestHandle);
151 StrnCatGrow(&TempName, &Size, Dest, 0);
161 Status = ShellOpenFileByName(Dest, &DestHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, 0);
58 CopySingleFile( IN CONST CHAR16 *Source, IN CONST CHAR16 *Dest, OUT VOID **Resp, IN BOOLEAN SilentMode ) argument
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_efi_lib.c139 VOID fsw_efi_strcpy(CHAR16 *Dest, struct fsw_string *src) argument
142 Dest[0] = 0;
144 CopyMem(Dest, src->data, src->size);
145 Dest[src->len] = 0;
148 Dest[0] = 0;
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Common.c573 Copy the PrefixLength bits from Src to Dest.
575 @param[out] Dest A pointer to the buffer to copy to.
582 OUT EFI_IPv6_ADDRESS *Dest,
591 ASSERT (Dest != NULL && Src != NULL);
597 ZeroMem (Dest, sizeof (EFI_IPv6_ADDRESS));
599 CopyMem (Dest, Src, Byte);
604 Dest->Addr[Byte] = (UINT8) (Src->Addr[Byte] & Mask);
581 Ip6CopyAddressByPrefix( OUT EFI_IPv6_ADDRESS *Dest, IN EFI_IPv6_ADDRESS *Src, IN UINT8 PrefixLength ) argument
H A DIp6Route.c222 @param[in] Dest The destination address.
225 @return NULL if no route entry to the (Dest, Src). Otherwise, the pointer
232 IN EFI_IPv6_ADDRESS *Dest,
240 Index = IP6_ROUTE_CACHE_HASH (Dest, Src);
245 if (EFI_IP6_EQUAL (Dest, &RtCacheEntry->Destination)&& EFI_IP6_EQUAL (Src, &RtCacheEntry->Source)) {
556 @param[in] Dest The destination address to search for.
566 IN EFI_IPv6_ADDRESS *Dest,
584 Index = IP6_ROUTE_CACHE_HASH (Dest, Src);
587 RtCacheEntry = Ip6FindRouteCache (RtTable, Dest, Src);
601 RtEntry = Ip6FindRouteEntry (RtTable, Dest, NUL
230 Ip6FindRouteCache( IN IP6_ROUTE_TABLE *RtTable, IN EFI_IPv6_ADDRESS *Dest, IN EFI_IPv6_ADDRESS *Src ) argument
564 Ip6Route( IN IP6_SERVICE *IpSb, IN EFI_IPv6_ADDRESS *Dest, IN EFI_IPv6_ADDRESS *Src ) argument
[all...]
H A DIp6Nd.c1469 EFI_IPv6_ADDRESS Dest; local
1656 Ip6SetToAllNodeMulticast (FALSE, IP6_LINK_LOCAL_SCOPE, &Dest);
1659 IP6_COPY_ADDRESS (&Dest, &Head->SourceAddress);
1665 &Dest,
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/Efi/
H A Dgetpath.c385 @param[out] Dest Pointer to location in which to store the extracted volume name.
389 set_volume(char *Dest, char *path) argument
398 (void) strncpyX(Dest, path, VolLen + 1);
399 //if (Py_VerboseFlag) PySys_WriteStderr("%s[%d]: VolLen = %d, Dest = \"%s\" path = \"%s\"\n",
400 // __func__, __LINE__, VolLen, Dest, path);
403 //if (Py_VerboseFlag) PySys_WriteStderr("%s[%d] EXIT: Dest = \"%s\"\n", __func__, __LINE__, Dest);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeIpIoLib/
H A DDxeIpIoLib.c608 @param[in] Dest Pointer to the destination IP address.
622 IN EFI_IP_ADDRESS *Dest OPTIONAL,
706 CopyMem (&Ip4TxData->DestinationAddress, Dest, sizeof (EFI_IPv4_ADDRESS));
723 if (Dest != NULL) {
724 CopyMem (&Ip6TxData->DestinationAddress, Dest, sizeof (EFI_IPv6_ADDRESS));
1057 Session.Dest.Addr[0] = EFI_IP4 (RxData->Ip4RxData.Header->DestinationAddress);
1091 &Session.Dest,
1490 @param[in] Dest The destination IP address to send this packet to.
1507 IN EFI_IP_ADDRESS *Dest,
1515 ASSERT ((IpIo->IpVersion != IP_VERSION_4) || (Dest !
1501 IpIoSend( IN OUT IP_IO *IpIo, IN OUT NET_BUF *Pkt, IN IP_IO_IP_INFO *Sender OPTIONAL, IN VOID *Context OPTIONAL, IN VOID *NotifyData OPTIONAL, IN EFI_IP_ADDRESS *Dest, IN IP_IO_OVERRIDE *OverrideData OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DSimpleFileParsing.c138 CHAR8 *Dest,
1205 CHAR8 *Dest,
1210 SaveDest = Dest;
1212 *Dest = *Src;
1213 Dest++;
1217 *Dest = 0;
1204 t_strcpy( CHAR8 *Dest, CHAR8 *Src ) argument
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigFileExplorer.c54 CHAR16 *Dest; local
58 Dest = AllocateZeroPool (Size);
59 ASSERT (Dest != NULL);
60 if (Dest != NULL) {
61 CopyMem (Dest, Src, Size);
64 return Dest;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DPrintInfo.c82 Copy Length of Src buffer to Dest buffer,
83 add a NULL termination to Dest buffer.
85 @param[in, out] Dest Destination buffer head.
91 IN OUT VOID *Dest,
99 DestBuffer = (UINT8 *) Dest;
90 MemToString( IN OUT VOID *Dest, IN VOID *Src, IN UINTN Length ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Library/
H A DIpIoLib.h166 EFI_IP_ADDRESS Dest; ///< Destination IP of the received packet. member in struct:_EFI_NET_SESSION_DATA
410 @param[in] Dest The destination IP address to send this packet to.
427 IN EFI_IP_ADDRESS *Dest,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DevicePathDxe/
H A DDevicePathFromText.c675 CHAR8 *Dest; local
677 Dest = *AsciiStr;
679 *(Dest++) = (CHAR8) *(Str++);
681 *Dest = 0;
686 *AsciiStr = Dest + 1;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DSetup.c828 @param Dest Location to copy string
834 IN OUT CHAR16 **Dest,
838 if (*Dest != NULL) {
839 FreePool (*Dest);
841 *Dest = AllocateCopyPool (StrSize (Src), Src);
842 ASSERT (*Dest != NULL);
849 @param Dest String to added to the end of.
855 IN OUT CHAR16 **Dest,
862 if (*Dest == NULL) {
863 NewStringCpy (Dest, Sr
833 NewStringCpy( IN OUT CHAR16 **Dest, IN CHAR16 *Src ) argument
854 NewStringCat( IN OUT CHAR16 **Dest, IN CHAR16 *Src ) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dsurface.c2682 WORD *Dest; local
2688 Dest = (WORD *) (dst + y * outpitch);
2691 *Dest = ((color & 0xFFC0) | ((color & 0x1F) << 1));
2694 *Dest |= 0x0001;
2696 Dest++;
2707 WORD *Dest; local
2711 Dest = (WORD *) (dst + y * outpitch);
2714 *Dest = color;
2717 *Dest |= (1 << 15);
2720 *Dest
[all...]
H A Dutils.c261 unsigned char *Dest; local
266 Dest = dst + y * outpitch;
269 /* A */ Dest[1] = (color & 0xf0) << 0;
270 /* L */ Dest[0] = (color & 0x0f) << 4;
271 Dest += 2;
304 unsigned char *Dest; local
313 Dest = dst + y * outpitch;
324 /* M */ Dest[2] = l << 1;
329 /* V */ Dest[1] = v << 3;
330 /* U */ Dest[
340 unsigned char *Dest; local
362 unsigned char *Dest; local
387 unsigned char *Dest; local
412 unsigned char *Dest; local
434 unsigned short *Dest; local
456 WORD *Dest; local
482 float *Dest; local
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dutils.c275 unsigned char *Dest; local
280 Dest = dst + y * outpitch;
283 /* A */ Dest[1] = (color & 0xf0) << 0;
284 /* L */ Dest[0] = (color & 0x0f) << 4;
285 Dest += 2;
318 unsigned char *Dest; local
327 Dest = dst + y * outpitch;
338 /* M */ Dest[2] = l << 1;
343 /* V */ Dest[1] = v << 3;
344 /* U */ Dest[
354 unsigned char *Dest; local
376 unsigned char *Dest; local
401 unsigned char *Dest; local
426 unsigned char *Dest; local
448 unsigned short *Dest; local
470 WORD *Dest; local
496 float *Dest; local
[all...]

Completed in 99 milliseconds

12