Symbol: DevicePathNodeLength
lib/libefivar/efivar-dp-format.c
1005
Length = (UINT16) ((DevicePathNodeLength ((EFI_DEVICE_PATH_PROTOCOL *) UsbWWId) - sizeof (USB_WWID_DEVICE_PATH)) / sizeof (CHAR16));
lib/libefivar/efivar-dp-format.c
1389
if (DevicePathNodeLength (IPDevPath) == sizeof (IPv4_DEVICE_PATH)) {
lib/libefivar/efivar-dp-format.c
1446
if (DevicePathNodeLength (IPDevPath) == sizeof (IPv6_DEVICE_PATH)) {
lib/libefivar/efivar-dp-format.c
1752
UriLength = DevicePathNodeLength (Uri) - sizeof (URI_DEVICE_PATH);
lib/libefivar/efivar-dp-format.c
2212
if (Index < DevicePathNodeLength (Node)) {
lib/libefivar/efivar-dp-format.c
2214
for (; Index < DevicePathNodeLength (Node); Index++) {
lib/libefivar/efivar-dp-format.c
2394
AlignedNode = AllocateCopyPool (DevicePathNodeLength (Node), Node);
lib/libefivar/efivar-dp-format.c
328
DataLength = DevicePathNodeLength (&Vendor->Header) - sizeof (VENDOR_DEVICE_PATH);
lib/libefivar/efivar-dp-format.c
593
Length = (UINT16) DevicePathNodeLength ((EFI_DEVICE_PATH_PROTOCOL *) AcpiAdr);
lib/libefivar/efivar-dp-parse.c
1070
Length = DevicePathNodeLength (AcpiAdr);
lib/libefivar/efivar-dp-xlate.c
57
#define ValidLen(dp) (DevicePathNodeLength(dp) >= sizeof(EFI_DEVICE_PATH_PROTOCOL) && \
lib/libefivar/efivar-dp-xlate.c
58
DevicePathNodeLength(dp) < MAX_DP_SANITY)
lib/libefivar/uefi-dputil.c
124
return ((UINTN) DevicePath - (UINTN) Start) + DevicePathNodeLength (DevicePath);
lib/libefivar/uefi-dputil.c
167
NodeLength = DevicePathNodeLength (DevicePath);
lib/libefivar/uefi-dputil.c
195
return (BOOLEAN) (DevicePathNodeLength (DevicePath) == END_DEVICE_PATH_LENGTH);
lib/libefivar/uefi-dputil.c
290
return ((EFI_DEVICE_PATH_PROTOCOL *)(__DECONST(UINT8 *, Node) + DevicePathNodeLength(Node)));
lib/libefivar/uefi-dputil.c
614
NodeLength = DevicePathNodeLength (DevicePathNode);
stand/boot/efi/boot1/boot1.c
100
len = DevicePathNodeLength(imgpath);
stand/boot/efi/boot1/boot1.c
101
if (len != DevicePathNodeLength(devpath))
stand/boot/efi/include/efi.h
54
#define NextDevicePathNode(a) ((EFI_DEVICE_PATH *)(((UINT8 *)(a)) + DevicePathNodeLength(a)))
stand/boot/efi/libefi/efipart.c
103
devpathlen = DevicePathNodeLength(node);
stand/boot/efi/libefi/efipart.c
106
devpathlen += DevicePathNodeLength(node);
stand/boot/efi/libefi/efipart.c
108
devpathlen += DevicePathNodeLength(NextDevicePathNode(node));
stand/boot/efi/loader/efi_main.c
153
DevicePathNodeLength(img->FilePath) <=