Searched defs:Node (Results 26 - 50 of 111) sorted by relevance

12345

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
H A DUefiDevicePathLib.c77 Returns the Type field of the device path node specified by Node.
79 If Node is NULL, then ASSERT().
81 @param Node A pointer to a device path node data structure.
83 @return The Type field of the device path node specified by Node.
89 IN CONST VOID *Node
92 ASSERT (Node != NULL);
93 return ((EFI_DEVICE_PATH_PROTOCOL *)(Node))->Type;
99 Returns the SubType field of the device path node specified by Node.
101 If Node is NULL, then ASSERT().
103 @param Node
269 SetDevicePathNodeLength( IN OUT VOID *Node, IN UINTN Length ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpInput.c575 NET_BUF *Node; local
602 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
604 if (TCP_SEQ_LT (Seg->Seq, TCPSEG_NETBUF (Node)->Seq)) {
614 Node = NET_LIST_USER_STRUCT (Prev, NET_BUF, List);
616 if (TCP_SEQ_LT (Seg->Seq, TCPSEG_NETBUF (Node)->End)) {
618 if (TCP_SEQ_LEQ (Seg->End, TCPSEG_NETBUF (Node)->End)) {
624 TcpTrimSegment (Nbuf, TCPSEG_NETBUF (Node)->End, Seg->End);
636 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
638 if (TCP_SEQ_LEQ (TCPSEG_NETBUF (Node)->End, Seg->End)) {
642 RemoveEntryList (&Node
680 NET_BUF *Node; local
[all...]
H A DTcpOutput.c413 NET_BUF *Node; local
429 Node = NULL;
433 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
434 Seg = TCPSEG_NETBUF (Node);
442 if ((Cur == Head) || (Seg == NULL) || (Node == NULL)) {
452 !NET_BUF_SHARED (Node)
455 NET_GET_REF (Node);
456 return Node;
522 if ((INT32) NetbufCopy (Node, Offset, CopyLen, Data) != CopyLen) {
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/QemuVideoDxe/
H A DDriver.c50 EFI_DEV_PATH *Node; local
104 Node = (EFI_DEV_PATH *) RemainingDevicePath;
106 // Check if RemainingDevicePath is the End of Device Path Node,
109 if (!IsDevicePathEnd (Node)) {
111 // If RemainingDevicePath isn't the End of Device Path Node,
114 if (Node->DevPath.Type != ACPI_DEVICE_PATH ||
115 Node->DevPath.SubType != ACPI_ADR_DP ||
116 DevicePathNodeLength(&Node->DevPath) != sizeof(ACPI_ADR_DEVICE_PATH)) {
249 // If RemainingDevicePath isn't the End of Device Path Node,
255 // If RemainingDevicePath is the End of Device Path Node,
[all...]
/vbox/src/VBox/Devices/Audio/
H A DAudioMixer.h44 RTLISTNODE Node; member in struct:AUDMIXSTREAM
64 RTLISTNODE Node; member in struct:AUDMIXSINK
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DFor.c138 ALIAS_LIST *Node; local
149 for ( Node = (ALIAS_LIST *)GetFirstNode(List), Found = FALSE
150 ; !IsNull(List, &Node->Link)
151 ; Node = (ALIAS_LIST *)GetNextNode(List, &Node->Link)
153 ASSERT(Node->CommandString != NULL);
154 ASSERT(Node->Alias != NULL);
155 if (StrCmp(Node->Alias, Alias)==0) {
156 FreePool(Node->CommandString);
157 Node
193 ALIAS_LIST *Node; local
229 ALIAS_LIST *Node; local
280 EFI_SHELL_FILE_INFO *Node; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/
H A DCp.c234 CONST EFI_SHELL_FILE_INFO *Node; local
272 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
273 ; !IsNull(&FileList->Link, &Node->Link)
274 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&FileList->Link, &Node->Link)
279 if (StrCmp(Node->FileName, L".") == 0 || StrCmp(Node->FileName, L"..") == 0) {
284 NewSize += StrSize(Node->FullName);
293 if (!RecursiveMode && !EFI_ERROR(ShellIsDirectory(Node->FullName))) {
301 if (!EFI_ERROR(ShellIsDirectory(Node
[all...]
H A DLs.c47 EFI_SHELL_FILE_INFO *Node; local
91 for ( Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&ListHead->Link)
92 ; !IsNull(&ListHead->Link, &Node->Link) && Node->Handle == NULL
93 ; Node = (EFI_SHELL_FILE_INFO *)GetNextNode(&ListHead->Link, &Node->Link)
96 if (Node->Handle == NULL) {
136 // Get the Volume Info from Node->Handle
140 EfiFpHandle = ConvertShellHandleToEfiFileProtocol(Node->Handle);
206 for ( Node
[all...]
H A DMv.c137 EFI_SHELL_FILE_INFO *Node; local
195 Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&DestList->Link);
199 if (!IsNodeAtEnd(&DestList->Link, &Node->Link)) {
204 if (ShellIsDirectory(Node->FullName)==EFI_SUCCESS) {
205 DestPath = AllocateZeroPool(StrSize(Node->FullName)+sizeof(CHAR16));
210 StrCpy(DestPath, Node->FullName);
257 CONST EFI_SHELL_FILE_INFO *Node; local
291 for (Node = (EFI_SHELL_FILE_INFO *)GetFirstNode(&FileList->Link)
292 ; !IsNull(&FileList->Link, &Node->Link)
293 ; Node
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/Utility/
H A DDevGenisis.c92 DeviceNode *Node; local
103 Node = (DeviceNode *)AllocateZeroPool(sizeof(DeviceNode));
104 if(Node == NULL) {
109 Node->DevName = DevName;
110 Node->DevProto = DevProto;
111 Node->InstanceList = InstanceList;
112 Node->OpenFunc = OpenFunc;
113 Node->InstanceSize = InstanceSize;
114 Node->NumInstances = NumInstance;
115 Node
[all...]
/vbox/src/VBox/Runtime/r0drv/darwin/
H A Dsemevent-r0drv-darwin.cpp61 RTLISTNODE Node; member in struct:RTSEMEVENTDARWINENTRY
170 RTListForEach(&pThis->WaitList, pWaiter, RTSEMEVENTDARWINENTRY, Node)
205 RTListForEach(&pThis->WaitList, pWaiter, RTSEMEVENTDARWINENTRY, Node)
302 RTListAppend(&pThis->WaitList, &Waiter.Node);
364 RTListNodeRemove(&Waiter.Node);
/vbox/src/VBox/Runtime/r0drv/solaris/
H A Dsemevent-r0drv-solaris.c64 RTLISTNODE Node; member in struct:RTSEMEVENTSOLENTRY
189 RTListForEach(&pThis->WaitList, pWaiter, RTSEMEVENTSOLENTRY, Node)
222 RTListForEach(&pThis->WaitList, pWaiter, RTSEMEVENTSOLENTRY, Node)
285 RTListAppend(&pThis->WaitList, &Waiter.Node);
314 RTListNodeRemove(&Waiter.Node);
/vbox/src/VBox/ValidationKit/utils/cpu/
H A Dcpu-alloc-all-mem.cpp55 RTLISTNODE Node; member in struct:TSTALLOC
66 RTListForEach(pHead, pCur, TSTALLOC, Node)
139 RTListAppend(&AllocHead, &pCur->Node);
182 RTListForEachReverseSafe(&AllocHead, pCur, pPrev, TSTALLOC, Node)
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DConsoleOption.c49 Check whether the device path node is ISA Serial Node.
53 @retval TRUE It's ISA Serial Node.
54 @retval FALSE It's NOT ISA Serial Node.
100 EFI_DEVICE_PATH_PROTOCOL *Node; local
110 Node = *DevicePath;
111 Node = NextDevicePathNode (Node);
113 while (!IsDevicePathEnd (Node)) {
114 Acpi = (ACPI_HID_DEVICE_PATH *) Node;
122 if ((DevicePathType (Node)
230 EFI_DEVICE_PATH_PROTOCOL *Node; local
416 EFI_DEVICE_PATH_PROTOCOL *Node; local
621 EFI_DEVICE_PATH_PROTOCOL *Node; local
939 EFI_DEVICE_PATH_PROTOCOL *Node; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciDeviceSupport.c480 PCI_IO_DEVICE *Node; local
511 Node = PCI_IO_DEVICE_FROM_LINK (CurrentLink);
512 Status = DeRegisterPciDevice (Controller, Node->Handle);
641 EFI_DEV_PATH_PTR Node; local
655 Node.DevPath = RemainingDevicePath;
657 if (Node.Pci->Device != PciIoDevice->DeviceNumber ||
658 Node.Pci->Function != PciIoDevice->FunctionNumber) {
1092 EFI_DEV_PATH_PTR Node; local
1101 Node.DevPath = CurrentDevicePath;
1107 Node
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Disk/PartitionDxe/
H A DPartition.c77 EFI_DEV_PATH *Node; local
84 // Check if RemainingDevicePath is the End of Device Path Node,
89 // If RemainingDevicePath isn't the End of Device Path Node,
92 Node = (EFI_DEV_PATH *) RemainingDevicePath;
93 if (Node->DevPath.Type != MEDIA_DEVICE_PATH ||
94 Node->DevPath.SubType != MEDIA_HARDDRIVE_DP ||
95 DevicePathNodeLength (&Node->DevPath) != sizeof (HARDDRIVE_DEVICE_PATH)) {
215 // Check if RemainingDevicePath is the End of Device Path Node,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Misc.c187 TCP_CB *Node; local
196 Node = NET_LIST_USER_STRUCT (Entry, TCP_CB, List);
198 if ((Local->Port != Node->LocalEnd.Port) ||
199 !TCP_PEER_MATCH (Remote, &Node->RemoteEnd) ||
200 !TCP_PEER_MATCH (Local, &Node->LocalEnd)) {
209 if (Node->RemoteEnd.Ip == 0) {
213 if (Node->RemoteEnd.Port == 0) {
217 if (Node->LocalEnd.Ip == 0) {
223 return Node;
227 Match = Node;
358 TCP_CB *Node; local
[all...]
H A DTcp4Output.c421 NET_BUF *Node; local
437 Node = NULL;
441 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
442 Seg = TCPSEG_NETBUF (Node);
451 ASSERT (Node != NULL);
460 !NET_BUF_SHARED (Node)) {
462 NET_GET_REF (Node);
463 return Node;
529 if ((INT32) NetbufCopy (Node, Offset, CopyLen, Data) != CopyLen) {
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiDevicePathLib/
H A DUefiDevicePathLib.c47 Returns the Type field of the device path node specified by Node.
49 If Node is NULL, then ASSERT().
51 @param Node A pointer to a device path node data structure.
53 @return The Type field of the device path node specified by Node.
59 IN CONST VOID *Node
62 ASSERT (Node != NULL);
63 return ((EFI_DEVICE_PATH_PROTOCOL *)(Node))->Type;
69 Returns the SubType field of the device path node specified by Node.
71 If Node is NULL, then ASSERT().
73 @param Node
240 SetDevicePathNodeLength( IN OUT VOID *Node, IN UINTN Length ) argument
699 CONST EFI_DEVICE_PATH_PROTOCOL *Node; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/
H A DIpSecConfig.c527 LIST_ENTRY *Node; local
549 for (Node = GetFirstNode (ParamPackage); !IsNull (ParamPackage, Node); Node = GetNextNode (ParamPackage, Node)) {
550 if (((SHELL_PARAM_PACKAGE *) Node)->Name != NULL) {
555 if (StrCmp (((SHELL_PARAM_PACKAGE *) Node)->Name, Item->VarName) == 0) {
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/Ikev2/
H A DSa.c819 LIST_ENTRY *Node; local
846 IKE_PACKET_END_PAYLOAD (IkePacket, Node);
847 NoncePayload = IKE_PAYLOAD_BY_PACKET (Node);
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/CirrusLogic5430Dxe/
H A DCirrusLogic5430.c128 EFI_DEV_PATH *Node; local
182 Node = (EFI_DEV_PATH *) RemainingDevicePath;
184 // Check if RemainingDevicePath is the End of Device Path Node,
187 if (!IsDevicePathEnd (Node)) {
189 // If RemainingDevicePath isn't the End of Device Path Node,
192 if (Node->DevPath.Type != ACPI_DEVICE_PATH ||
193 Node->DevPath.SubType != ACPI_ADR_DP ||
194 DevicePathNodeLength(&Node->DevPath) != sizeof(ACPI_ADR_DEVICE_PATH)) {
342 // If RemainingDevicePath isn't the End of Device Path Node,
348 // If RemainingDevicePath is the End of Device Path Node,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DLoadPciRom.c82 EFI_SHELL_FILE_INFO *Node; local
133 for ( Node = (EFI_SHELL_FILE_INFO*)GetFirstNode(&FileList->Link)
134 ; !IsNull(&FileList->Link, &Node->Link) && !ShellGetExecutionBreakFlag()
135 ; Node = (EFI_SHELL_FILE_INFO*)GetNextNode(&FileList->Link, &Node->Link)
137 if (EFI_ERROR(Node->Status)){
138 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_OPEN_FAIL), gShellDebug1HiiHandle, Node->FullName);
142 if (FileHandleIsDirectory(Node->Handle) == EFI_SUCCESS) {
143 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_FILE_NOT_DIR), gShellDebug1HiiHandle, Node->FullName);
147 SourceSize = (UINTN) Node
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/UefiShell/
H A DdaShell.c803 DeviceNode *Node; local
828 Node = __DevRegister(NULL, NULL, &da_ShellOpen, Stream, 1, sizeof(GenericInstance), O_RDWR);
830 Stream->Parent = Node;
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/PartitionDxe/
H A DPartition.c104 EFI_DEV_PATH *Node; local
112 // Check if RemainingDevicePath is the End of Device Path Node,
118 // If RemainingDevicePath isn't the End of Device Path Node,
121 Node = (EFI_DEV_PATH *) RemainingDevicePath;
122 if ( Node->DevPath.Type != MEDIA_DEVICE_PATH
123 || Node->DevPath.SubType != MEDIA_HARDDRIVE_DP
124 || DevicePathNodeLength (&Node->DevPath) != sizeof (HARDDRIVE_DEVICE_PATH)
125 || Node->DevPath.Type != MESSAGING_DEVICE_PATH
126 || Node->DevPath.SubType != MSG_SATA_DP) {
256 // Check if RemainingDevicePath is the End of Device Path Node,
[all...]

Completed in 115 milliseconds

12345