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

  /device/linaro/bootloader/edk2/MdePkg/Library/UefiDevicePathLib/
DevicePathUtilities.c 60 UINTN NodeLength;
76 NodeLength = DevicePathNodeLength (DevicePath);
77 if (NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
81 if (NodeLength > MAX_UINTN - Size) {
84 Size += NodeLength;
289 by NodeLength. NodeLength is returned. Node is not required to be aligned on
294 If NodeLength >= SIZE_64KB, then ASSERT().
295 If NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL), then ASSERT().
536 UINTN NodeLength;
    [all...]
UefiDevicePathLib.c 219 NodeLength and initializes the device path node header with NodeType and NodeSubType.
221 If NodeLength is smaller than a device path header, then NULL is returned.
229 @param NodeLength The length of the new device node.
239 IN UINT16 NodeLength
242 return UefiDevicePathLibCreateDeviceNode (NodeType, NodeSubType, NodeLength);
UefiDevicePathLibOptionalDevicePathProtocol.c 280 NodeLength and initializes the device path node header with NodeType and NodeSubType.
282 If NodeLength is smaller than a device path header, then NULL is returned.
290 @param NodeLength The length of the new device node.
300 IN UINT16 NodeLength
304 return mDevicePathLibDevicePathUtilities->CreateDeviceNode (NodeType, NodeSubType, NodeLength);
306 return UefiDevicePathLibCreateDeviceNode (NodeType, NodeSubType, NodeLength);
UefiDevicePathLib.h 331 NodeLength and initializes the device path node header with NodeType and NodeSubType.
333 If NodeLength is smaller than a device path header, then NULL is returned.
341 @param NodeLength The length of the new device node.
351 IN UINT16 NodeLength
  /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/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/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/
UefiDevicePathLib.c 102 UINTN NodeLength;
118 NodeLength = DevicePathNodeLength (DevicePath);
119 if (NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
123 if (NodeLength > MAX_UINTN - Size) {
126 Size += NodeLength;
329 by NodeLength. NodeLength is returned. Node is not required to be aligned on
334 If NodeLength >= SIZE_64KB, then ASSERT().
335 If NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL), then ASSERT().
576 NodeLength and initializes the device path node header with NodeType and NodeSubType.
    [all...]
  /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/Efi/Protocol/DevicePathUtilities/
DevicePathUtilities.h 189 IN UINT16 NodeLength
201 NodeLength - NodeLength is the length of the device node
206 NULL - NodeLength is less than
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DevicePathUtilities.h 145 @param NodeLength NodeLength is the length of the device node
149 @retval NULL NodeLength is less than
158 IN UINT16 NodeLength
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
EdkIIGlueDevicePathLib.h 187 This function creates a new device node in a newly allocated buffer of size NodeLength and
190 If NodeLength is smaller than a device path header, then NULL is returned.
197 @param NodeLength The length of the new device node.
207 IN UINT16 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/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/Include/Library/
DevicePathLib.h 190 by NodeLength. NodeLength is returned. Node is not required to be aligned on
195 If NodeLength >= 0x10000, then ASSERT().
196 If NodeLength < sizeof (EFI_DEVICE_PATH_PROTOCOL), then ASSERT().
399 This function creates a new device node in a newly allocated buffer of size NodeLength and
402 If NodeLength is smaller than a device path header, then NULL is returned.
409 @param NodeLength The length of the new device node.
419 IN UINT16 NodeLength

Completed in 213 milliseconds