Lines Matching refs:DeviceNode
3592 EFI_DEVICE_PATH_PROTOCOL *DeviceNode; in UefiDevicePathLibConvertTextToDeviceNode() local
3618 DeviceNode = FromText (DeviceNodeStr); in UefiDevicePathLibConvertTextToDeviceNode()
3620 DeviceNode = FromText (ParamStr); in UefiDevicePathLibConvertTextToDeviceNode()
3626 return DeviceNode; in UefiDevicePathLibConvertTextToDeviceNode()
3648 EFI_DEVICE_PATH_PROTOCOL *DeviceNode; in UefiDevicePathLibConvertTextToDevicePath() local
3668 DeviceNode = UefiDevicePathLibConvertTextToDeviceNode (DeviceNodeStr); in UefiDevicePathLibConvertTextToDevicePath()
3670 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
3672 FreePool (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
3676 DeviceNode = (EFI_DEVICE_PATH_PROTOCOL *) AllocatePool (END_DEVICE_PATH_LENGTH); in UefiDevicePathLibConvertTextToDevicePath()
3677 ASSERT (DeviceNode != NULL); in UefiDevicePathLibConvertTextToDevicePath()
3678 SetDevicePathEndNode (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
3680 DeviceNode->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE; in UefiDevicePathLibConvertTextToDevicePath()
3682 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
3684 FreePool (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()