Searched defs:DevPathNode (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DDevicePath.c1493 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; local
1527 DevPathNode = DevPath;
1528 while (!IsDevicePathEnd (DevPathNode)) {
1535 if (DevicePathType (DevPathNode) == DevPathTable[Index].Type &&
1536 DevicePathSubType (DevPathNode) == DevPathTable[Index].SubType
1557 DumpNode (&Str, DevPathNode);
1562 DevPathNode = NextDevicePathNode (DevPathNode);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DevicePathDxe/
H A DDevicePathToText.c2003 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; local
2017 DevPathNode = (EFI_DEVICE_PATH_PROTOCOL *) DevicePath;
2018 while (!IsDevicePathEnd (DevPathNode)) {
2025 if (DevicePathType (DevPathNode) == DevPathToTextTable[Index].Type &&
2026 DevicePathSubType (DevPathNode) == DevPathToTextTable[Index].SubType
2047 AlignedDevPathNode = AllocateCopyPool (DevicePathNodeLength (DevPathNode), DevPathNode);
2057 DevPathNode = NextDevicePathNode (DevPathNode);
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigDevicePath.c1458 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; local
1492 DevPathNode = DevPath;
1493 while (!IsDevicePathEnd (DevPathNode)) {
1500 if (DevicePathType (DevPathNode) == DevPathTable[Index].Type &&
1501 DevicePathSubType (DevPathNode) == DevPathTable[Index].SubType
1522 DumpNode (&Str, DevPathNode);
1527 DevPathNode = NextDevicePathNode (DevPathNode);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/PlatformDriOverrideDxe/
H A DPlatDriOverrideDxe.c261 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; local
277 DevPathNode = Image->FilePath;
279 while (!IsDevicePathEnd (DevPathNode)) {
283 AlignedDevPathNode = AllocateCopyPool (DevicePathNodeLength(DevPathNode), DevPathNode);
322 DevPathNode = NextDevicePathNode (DevPathNode);
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/PlatformBdsLib/
H A DBdsPlatform.c1550 EFI_DEVICE_PATH_PROTOCOL *DevPathNode; local
1583 Status = gBS->HandleProtocol (Handle, &gEfiDevicePathProtocolGuid, (VOID **)&DevPathNode);
1586 while (!IsDevicePathEnd (DevPathNode)) {
1591 (DevicePathType(DevPathNode) == MESSAGING_DEVICE_PATH) &&
1592 (DevicePathSubType(DevPathNode) == MSG_ATAPI_DP)
1594 Atapi = (ATAPI_DEVICE_PATH*) DevPathNode;
1609 DevPathNode = NextDevicePathNode (DevPathNode);

Completed in 60 milliseconds