Lines Matching refs:Lun

28   @param[in]       Lun    The LUN of the SCSI device to send the SCSI Request Packet.
30 specified by Target and Lun.
50 @retval EFI_INVALID_PARAMETER Target, Lun, or the contents of ScsiRequestPacket are invalid.
63 IN UINT64 Lun,
74 if (Target[0] != 0 || (CompareMem (&Lun, ConfigNvData->BootLun, sizeof (UINT64)) != 0)) {
82 return IScsiExecuteScsiCommand (This, Target, Lun, Packet);
100 @param[in, out] Lun On input, a pointer to the LUN of a SCSI device present on the SCSI
105 channel was returned in Target and Lun.
106 @retval EFI_INVALID_PARAMETER Target array is not all 0xF, and Target and Lun were
115 IN OUT UINT64 *Lun
125 if ((*Target)[0] == 0 && (CompareMem (Lun, ConfigNvData->BootLun, sizeof (UINT64)) == 0)) {
127 // Only one <Target, Lun> pair per iSCSI Driver instance.
135 CopyMem (Lun, ConfigNvData->BootLun, sizeof (UINT64));
153 @param[in] Lun The LUN of the SCSI device for which a device path node is to be
156 specified by Target and Lun. This function is responsible for
162 Target and Lun was allocated and returned in
165 @retval EFI_NOT_FOUND The SCSI devices specified by Target and Lun does not exist
175 IN UINT64 Lun,
199 if (CompareMem (&Lun, ConfigNvData->BootLun, sizeof (UINT64)) != 0) {
232 CopyMem (&Node->Iscsi.Lun, ConfigNvData->BootLun, sizeof (UINT64));
249 @param[out] Lun A pointer to the LUN of a SCSI device on the SCSI channel.
252 LUN, and they were returned in Target and Lun.
253 @retval EFI_INVALID_PARAMETER DevicePath or Target or Lun is NULL.
265 OUT UINT64 *Lun
271 if ((DevicePath == NULL) || (Target == NULL) || (Lun == NULL)) {
292 CopyMem (Lun, ConfigNvData->BootLun, sizeof (UINT64));
325 @param[in] Lun The LUN of the SCSI device to reset.
327 @retval EFI_SUCCESS The SCSI device specified by Target and Lun was reset.
328 @retval EFI_INVALID_PARAMETER Target or Lun is NULL.
330 specified by Target and Lun.
333 specified by Target and Lun.
341 IN UINT64 Lun
363 @retval EFI_INVALID_PARAMETER Target or Lun is NULL.