HomeSort by relevance Sort by last modified time
    Searched defs:NodeLength (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSmm/
SmmScriptSave.c 176 UINTN NodeLength;
186 NodeLength = sizeof (EFI_BOOT_SCRIPT_IO_WRITE) + (WidthInByte * Count);
192 Script.IoWrite->Length = (UINT8)(NodeLength);
205 *ScriptTable = *ScriptTable + NodeLength;
221 UINTN NodeLength;
231 NodeLength = sizeof (EFI_BOOT_SCRIPT_PCI_CONFIG_WRITE) + (WidthInByte * Count);
237 Script.PciWrite->Length = (UINT8)(NodeLength);
250 *ScriptTable = *ScriptTable + NodeLength;
  /device/linaro/bootloader/edk2/ArmPkg/Library/BdsLib/
BdsLoadOption.c 118 UINTN NodeLength;
172 NodeLength = DevicePathNodeLength(DevicePathNode);
173 CopyMem (EfiLoadOptionPtr, DevicePathNode, NodeLength);
174 EfiLoadOptionPtr += NodeLength;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
DevicePath.c 346 UINTN NodeLength;
351 NodeLength = DevicePathNodeLength (Node);
353 Temp = EfiLibAllocateCopyPool (NodeLength + sizeof (EFI_DEVICE_PATH_PROTOCOL), Node);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiDevicePathLib/
UefiDevicePathLib.c 202 UINTN NodeLength;
210 NodeLength = DevicePathNodeLength (DevicePathNode);
212 TempDevicePath = AllocatePool (NodeLength + sizeof (EFI_DEVICE_PATH_PROTOCOL));
216 TempDevicePath = CopyMem (TempDevicePath, DevicePathNode, NodeLength);
372 This function creates a new device node in a newly allocated buffer of size NodeLength and
375 If NodeLength is smaller than a device path header, then NULL is returned.
382 @param NodeLength The length of the new device node.
392 IN UINT16 NodeLength
397 if (NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
399 // NodeLength is less than the size of the header.
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/RuntimeDxe/EfiRuntimeLib/
RtDevicePath.c 443 UINTN NodeLength;
448 NodeLength = DevicePathNodeLength (Node);
450 Temp = InternalAllocateCopyPool (NodeLength + sizeof (EFI_DEVICE_PATH_PROTOCOL), Node);
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathUtilities.c 60 UINTN NodeLength;
65 NodeLength = DevicePathNodeLength (DevicePath);
66 if (NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
71 Size += NodeLength;
272 by NodeLength. NodeLength is returned. Node is not required to be aligned on
277 If NodeLength >= SIZE_64KB, then ASSERT().
278 If NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL), then ASSERT().
519 UINTN NodeLength;
527 NodeLength = DevicePathNodeLength (DevicePathNode);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
UefiDevicePathLib.c 102 UINTN NodeLength;
107 NodeLength = DevicePathNodeLength (DevicePath);
108 if (NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
113 Size += NodeLength;
313 by NodeLength. NodeLength is returned. Node is not required to be aligned on
318 If NodeLength >= SIZE_64KB, then ASSERT().
319 If NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL), then ASSERT().
560 NodeLength and initializes the device path node header with NodeType and NodeSubType.
562 If NodeLength is smaller than a device path header, then NULL is returned.
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/HiKey/HiKeyDxe/
InstallBootMenu.c 215 UINTN NodeLength;
284 NodeLength = DevicePathNodeLength(DevicePathNode);
285 CopyMem (EfiLoadOptionPtr, DevicePathNode, NodeLength);
286 EfiLoadOptionPtr += NodeLength;

Completed in 512 milliseconds