Lines Matching refs:DeviceNode

3923   EFI_DEVICE_PATH_PROTOCOL  *DeviceNode;  in UefiDevicePathLibConvertTextToDeviceNode()  local
3949 DeviceNode = FromText (DeviceNodeStr); in UefiDevicePathLibConvertTextToDeviceNode()
3951 DeviceNode = FromText (ParamStr); in UefiDevicePathLibConvertTextToDeviceNode()
3957 return DeviceNode; in UefiDevicePathLibConvertTextToDeviceNode()
3979 EFI_DEVICE_PATH_PROTOCOL *DeviceNode; in UefiDevicePathLibConvertTextToDevicePath() local
4008 DeviceNode = UefiDevicePathLibConvertTextToDeviceNode (DeviceNodeStr); in UefiDevicePathLibConvertTextToDevicePath()
4010 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
4015 if (DeviceNode != NULL) { in UefiDevicePathLibConvertTextToDevicePath()
4016 FreePool (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
4022 DeviceNode = (EFI_DEVICE_PATH_PROTOCOL *)AllocatePool (END_DEVICE_PATH_LENGTH); in UefiDevicePathLibConvertTextToDevicePath()
4023 if (DeviceNode == NULL) { in UefiDevicePathLibConvertTextToDevicePath()
4024 ASSERT (DeviceNode != NULL); in UefiDevicePathLibConvertTextToDevicePath()
4028 SetDevicePathEndNode (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
4029 DeviceNode->SubType = END_INSTANCE_DEVICE_PATH_SUBTYPE; in UefiDevicePathLibConvertTextToDevicePath()
4031 NewDevicePath = AppendDevicePathNode (DevicePath, DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()
4036 if (DeviceNode != NULL) { in UefiDevicePathLibConvertTextToDevicePath()
4037 FreePool (DeviceNode); in UefiDevicePathLibConvertTextToDevicePath()