Lines Matching refs:DevPath

56     EFI_DEVICE_PATH         *Start, *Next, *DevPath;  in DevicePathInstance()  local
59 DevPath = *DevicePath; in DevicePathInstance()
60 Start = DevPath; in DevicePathInstance()
62 if (!DevPath) { in DevicePathInstance()
71 Next = NextDevicePathNode(DevPath); in DevicePathInstance()
73 if (IsDevicePathEndType(DevPath)) { in DevicePathInstance()
81 …OR, "DevicePathInstance: DevicePath %x Size %d", *DevicePath, ((UINT8 *) DevPath) - ((UINT8 *) Sta… in DevicePathInstance()
82 DumpHex (0, 0, ((UINT8 *) DevPath) - ((UINT8 *) Start), Start); in DevicePathInstance()
86 DevPath = Next; in DevicePathInstance()
89 ASSERT (DevicePathSubType(DevPath) == END_ENTIRE_DEVICE_PATH_SUBTYPE || in DevicePathInstance()
90 DevicePathSubType(DevPath) == END_INSTANCE_DEVICE_PATH_SUBTYPE); in DevicePathInstance()
96 if (DevicePathSubType(DevPath) == END_ENTIRE_DEVICE_PATH_SUBTYPE) { in DevicePathInstance()
106 *Size = ((UINT8 *) DevPath) - ((UINT8 *) Start); in DevicePathInstance()
290 IN EFI_DEVICE_PATH *DevPath in DevicePathSize() argument
299 Start = DevPath; in DevicePathSize()
300 while (!IsDevicePathEnd(DevPath)) { in DevicePathSize()
301 DevPath = NextDevicePathNode(DevPath); in DevicePathSize()
308 return ((UINTN) DevPath - (UINTN) Start) + sizeof(EFI_DEVICE_PATH); in DevicePathSize()
313 IN EFI_DEVICE_PATH *DevPath in DuplicateDevicePath() argument
324 Size = DevicePathSize (DevPath); in DuplicateDevicePath()
332 CopyMem (NewDevPath, DevPath, Size); in DuplicateDevicePath()
340 IN EFI_DEVICE_PATH *DevPath in UnpackDevicePath() argument
350 Src = DevPath; in UnpackDevicePath()
377 Src = DevPath; in UnpackDevicePath()
406 EFI_DEVICE_PATH *DevPath; in AppendDevicePathInstance() local
416 DevPath = (EFI_DEVICE_PATH *)Ptr; in AppendDevicePathInstance()
417 ASSERT(DevPath); in AppendDevicePathInstance()
422 while (!IsDevicePathEnd(DevPath)) { in AppendDevicePathInstance()
423 DevPath = NextDevicePathNode(DevPath); in AppendDevicePathInstance()
430 DevPath->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE; in AppendDevicePathInstance()
432 DevPath = NextDevicePathNode(DevPath); in AppendDevicePathInstance()
433 CopyMem (DevPath, Instance, InstanceSize); in AppendDevicePathInstance()
478 IN VOID *DevPath in _DevPathPci() argument
483 Pci = DevPath; in _DevPathPci()
490 IN VOID *DevPath in _DevPathPccard() argument
495 Pccard = DevPath; in _DevPathPccard()
502 IN VOID *DevPath in _DevPathMemMap() argument
507 MemMap = DevPath; in _DevPathMemMap()
518 IN VOID *DevPath in _DevPathController() argument
523 Controller = DevPath; in _DevPathController()
532 IN VOID *DevPath in _DevPathVendor() argument
539 Vendor = DevPath; in _DevPathVendor()
566 IN VOID *DevPath in _DevPathAcpi() argument
571 Acpi = DevPath; in _DevPathAcpi()
616 IN VOID *DevPath in _DevPathAtapi() argument
621 Atapi = DevPath; in _DevPathAtapi()
631 IN VOID *DevPath in _DevPathScsi() argument
636 Scsi = DevPath; in _DevPathScsi()
644 IN VOID *DevPath in _DevPathFibre() argument
649 Fibre = DevPath; in _DevPathFibre()
658 IN VOID *DevPath in _DevPath1394() argument
663 F1394 = DevPath; in _DevPath1394()
673 IN VOID *DevPath in _DevPathUsb() argument
678 Usb = DevPath; in _DevPathUsb()
686 IN VOID *DevPath in _DevPathI2O() argument
691 I2O = DevPath; in _DevPathI2O()
698 IN VOID *DevPath in _DevPathMacAddr() argument
705 MAC = DevPath; in _DevPathMacAddr()
765 IN VOID *DevPath in _DevPathIPv4() argument
771 IP = DevPath; in _DevPathIPv4()
824 IN VOID *DevPath in _DevPathIPv6() argument
829 IP = DevPath; in _DevPathIPv6()
850 IN VOID *DevPath in _DevPathUri() argument
855 Uri = DevPath; in _DevPathUri()
863 IN VOID *DevPath in _DevPathInfiniBand() argument
868 InfiniBand = DevPath; in _DevPathInfiniBand()
877 IN VOID *DevPath in _DevPathUart() argument
883 Uart = DevPath; in _DevPathUart()
920 IN VOID *DevPath in _DevPathSata() argument
925 Sata = DevPath; in _DevPathSata()
933 IN VOID *DevPath in _DevPathHardDrive() argument
938 Hd = DevPath; in _DevPathHardDrive()
964 IN VOID *DevPath in _DevPathCDROM() argument
969 Cd = DevPath; in _DevPathCDROM()
976 IN VOID *DevPath in _DevPathFilePath() argument
981 Fp = DevPath; in _DevPathFilePath()
988 IN VOID *DevPath in _DevPathMediaProtocol() argument
993 MediaProt = DevPath; in _DevPathMediaProtocol()
1000 IN VOID *DevPath in _DevPathBssBss() argument
1006 Bss = DevPath; in _DevPathBssBss()
1024 IN VOID *DevPath EFI_UNUSED in _DevPathEndInstance()
1038 IN VOID *DevPath in _DevPathNodeUnknown() argument
1044 Path = DevPath ; in _DevPathNodeUnknown()
1045 value = DevPath ; in _DevPathNodeUnknown()
1126 EFI_DEVICE_PATH *DevPath in DevicePathToStr() argument
1147 DevPath = UnpackDevicePath(DevPath); in DevicePathToStr()
1148 ASSERT (DevPath); in DevicePathToStr()
1155 DevPathNode = DevPath; in DevicePathToStr()
1204 FreePool (DevPath); in DevicePathToStr()
1235 IN EFI_DEVICE_PATH *DevPath in LibDuplicateDevicePathInstance() argument
1245 Temp = DevPath; in LibDuplicateDevicePathInstance()