Symbol: DevicePathNodeLength
lib/libefivar/efivar-dp-format.c
1059
Length = (UINT16)((DevicePathNodeLength ((EFI_DEVICE_PATH_PROTOCOL *)UsbWWId) - sizeof (USB_WWID_DEVICE_PATH)) / sizeof (CHAR16));
lib/libefivar/efivar-dp-format.c
1452
if (DevicePathNodeLength (IPDevPath) == sizeof (IPv4_DEVICE_PATH)) {
lib/libefivar/efivar-dp-format.c
1510
if (DevicePathNodeLength (IPDevPath) == sizeof (IPv6_DEVICE_PATH)) {
lib/libefivar/efivar-dp-format.c
1853
DnsServerIpCount = (UINT32)(DevicePathNodeLength (DnsDevPath) - sizeof (EFI_DEVICE_PATH_PROTOCOL) - sizeof (DnsDevPath->IsIPv6)) / sizeof (EFI_IP_ADDRESS);
lib/libefivar/efivar-dp-format.c
1901
UriLength = DevicePathNodeLength (Uri) - sizeof (URI_DEVICE_PATH);
lib/libefivar/efivar-dp-format.c
2369
if (Index < DevicePathNodeLength (Node)) {
lib/libefivar/efivar-dp-format.c
2371
for ( ; Index < DevicePathNodeLength (Node); Index++) {
lib/libefivar/efivar-dp-format.c
2555
AlignedNode = AllocateCopyPool (DevicePathNodeLength (Node), Node);
lib/libefivar/efivar-dp-format.c
321
DataLength = DevicePathNodeLength (&Vendor->Header) - sizeof (VENDOR_DEVICE_PATH);
lib/libefivar/efivar-dp-format.c
637
Length = (UINT16)DevicePathNodeLength ((EFI_DEVICE_PATH_PROTOCOL *)AcpiAdr);
lib/libefivar/efivar-dp-parse.c
1106
Length = DevicePathNodeLength (AcpiAdr);
lib/libefivar/efivar-dp-xlate.c
48
#define ValidLen(dp) (DevicePathNodeLength(dp) >= sizeof(EFI_DEVICE_PATH_PROTOCOL) && \
lib/libefivar/efivar-dp-xlate.c
49
DevicePathNodeLength(dp) < MAX_DP_SANITY)
lib/libefivar/uefi-dputil.c
111
NodeLength = DevicePathNodeLength (DevicePath);
lib/libefivar/uefi-dputil.c
150
return (BOOLEAN)(DevicePathNodeLength (DevicePath) == END_DEVICE_PATH_LENGTH);
lib/libefivar/uefi-dputil.c
245
return (EFI_DEVICE_PATH_PROTOCOL *)(__DECONST(UINT8 *, Node) + DevicePathNodeLength (Node));
lib/libefivar/uefi-dputil.c
432
return ((UINTN)DevicePath - (UINTN)Start) + DevicePathNodeLength (DevicePath);
lib/libefivar/uefi-dputil.c
596
NodeLength = DevicePathNodeLength (DevicePathNode);
stand/efi/include/efi.h
69
#define NextDevicePathNode(a) ( (EFI_DEVICE_PATH *) ( ((UINT8 *) (a)) + DevicePathNodeLength(a)))
stand/efi/libefi/devpath.c
101
uint32_t size = DevicePathNodeLength(&node->Header) - sizeof(*node);
stand/efi/libefi/devpath.c
117
if (DevicePathNodeLength(&node->Header) > sizeof(*node)) {
stand/efi/libefi/devpath.c
605
len = prefix + DevicePathNodeLength(NextDevicePathNode(node));
stand/efi/libefi/devpath.c
643
len = DevicePathNodeLength(devpath1);
stand/efi/libefi/devpath.c
644
if (len != DevicePathNodeLength(devpath2))
stand/efi/libefi/devpath.c
709
len = DevicePathNodeLength(prefix);
stand/efi/libefi/devpath.c
710
if (len != DevicePathNodeLength(path))
stand/efi/libefi/devpath.c
745
return ((UINTN)path - (UINTN)start) + DevicePathNodeLength(path);
stand/efi/libefi/eficom.c
245
if (DevicePathNodeLength(node) < sizeof(*node))
stand/efi/libefi/efihttp.c
337
len = DevicePathNodeLength(&uri->Header) - sizeof(URI_DEVICE_PATH);
stand/efi/loader/efi_main.c
160
DevicePathNodeLength(img->FilePath) <=