Home
last modified time | relevance | path

Searched refs:IsDevicePathEnd (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/sys/stand/efiboot/
H A Defidev.c31 for (i = 0; !IsDevicePathEnd(dp); dp = NextDevicePathNode(dp), i++) { in efi_device_path_depth()
45 if (IsDevicePathEnd(dp)) in efi_device_path_count()
58 if (IsDevicePathEnd(dpa) || IsDevicePathEnd(dpb)) in efi_device_path_ncmp()
59 return ((IsDevicePathEnd(dpa) && IsDevicePathEnd(dpb)) in efi_device_path_ncmp()
60 ? 0 : (IsDevicePathEnd(dpa))? -1 : 1); in efi_device_path_ncmp()
H A Definet.c370 for (dp = dp0; !IsDevicePathEnd(dp); dp = NextDevicePathNode(dp)) { in efi_net_probe()
/netbsd-src/sys/arch/i386/stand/efiboot/
H A Defidev.c31 for (i = 0; !IsDevicePathEnd(dp); dp = NextDevicePathNode(dp), i++) { in efi_device_path_depth()
45 if (IsDevicePathEnd(dpa) || IsDevicePathEnd(dpb)) in efi_device_path_ncmp()
46 return ((IsDevicePathEnd(dpa) && IsDevicePathEnd(dpb)) in efi_device_path_ncmp()
47 ? 0 : (IsDevicePathEnd(dpa))? -1 : 1); in efi_device_path_ncmp()
H A Definet.c349 for (dp = dp0; !IsDevicePathEnd(dp); dp = NextDevicePathNode(dp)) { in efi_net_probe()
370 !IsDevicePathEnd(dp); in efi_net_probe()
H A Defiboot.c81 for (dp = dp0; !IsDevicePathEnd(dp); dp = NextDevicePathNode(dp)) { in efi_main()
H A Dboot.c790 !IsDevicePathEnd(dp); in command_devpath()
H A Deficons.c817 !IsDevicePathEnd(dp); in efi_com_probe()
/netbsd-src/sys/external/bsd/gnu-efi/dist/lib/
H A Ddpath.c300 while (!IsDevicePathEnd(DevPath)) { in DevicePathSize()
356 if (IsDevicePathEnd(Src)) { in UnpackDevicePath()
387 if (IsDevicePathEnd(Src)) { in UnpackDevicePath()
422 while (!IsDevicePathEnd(DevPath)) { in AppendDevicePathInstance()
454 if (IsDevicePathEnd(FilePath)) { in LibDevicePathToInterface()
1156 while (!IsDevicePathEnd(DevPathNode)) { in DevicePathToStr()
H A Dsread.c129 while (!IsDevicePathEnd(&FilePathNode->Header)) { in OpenSimpleReadFile()
H A Dhand.c243 if (IsDevicePathEnd(DevPath)) { in LibLocateHandleByDiskSignature()
/netbsd-src/sys/external/bsd/gnu-efi/dist/inc/
H A Defidevp.h59 #define IsDevicePathEnd(a) ( IsDevicePathEndType(a) && IsDevicePathEndSubType(a) ) macro