Home | History | Annotate | Download | only in IScsiDxe

Lines Matching refs:Header

912   // The status is success; extract the wanted fields from the header segment.

975 // Trim off the header segment.
1236 Receive an iSCSI response PDU. An iSCSI response PDU contains an iSCSI PDU header and
1245 @param[in] HeaderDigest Whether there will be header digest received.
1268 UINT8 *Header;
1285 // The header digest will be received together with the PDU header, if exists.
1294 Header = NetbufAllocSpace (PduHdr, Len, NET_BUF_TAIL);
1295 if (Header == NULL) {
1312 // TODO: check the header-digest.
1320 Len = ISCSI_GET_DATASEG_LEN (Header);
1332 switch (ISCSI_GET_OPCODE (Header)) {
1338 InDataOffset = ISCSI_GET_BUFFER_OFFSET (Header);
2166 ISCSI_ADDITIONAL_HEADER *Header;
2199 Header = (ISCSI_ADDITIONAL_HEADER *) (ScsiCmd + 1);
2227 BiExpReadDataLenAHS = (ISCSI_BI_EXP_READ_DATA_LEN_AHS *) Header;
2228 Header = (ISCSI_ADDITIONAL_HEADER *) (BiExpReadDataLenAHS + 1);
2246 Header->Length = NTOHS ((UINT16) (Packet->CdbLength - 15));
2247 Header->Type = ISCSI_AHS_TYPE_EXT_CDB;
2249 CopyMem (Header + 1, (UINT8 *) Packet->Cdb + 16, Packet->CdbLength - 16);
2266 // Update the data segment length in the PDU header.