Home | History | Annotate | Download | only in src

Lines Matching defs:PayloadLength

101                 PayloadLength = 0,
227 /* To Calculate the IDLength and PayloadLength for
233 &PayloadLength,
322 + IDLength + TypeLengthByte + PayloadLength
367 + TypeLengthByte + IDLength + PayloadLength
410 /* to check if payloadlength is 8bit or 32bit*/
427 RecordLength += Record->PayloadLength;
473 uint32_t PayloadLength = 0;
492 /* To Calculate the IDLength and PayloadLength for short or normal record */
497 &PayloadLength,
501 Record->PayloadLength = PayloadLength;
586 /* fill the typelength idlength and payloadlength with zero(empty message)*/
618 /* check for the short record bit if it is then payloadlength is only one byte */
622 *Buffer = (uint8_t)(Record->PayloadLength & 0x000000ff);
627 /* if it is normal record payloadlength is 4 byte(32 bit)*/
628 *Buffer = (uint8_t)((Record->PayloadLength & 0xff000000) >> PHNFCSTSHL24);
630 *Buffer = (uint8_t)((Record->PayloadLength & 0x00ff0000) >> PHNFCSTSHL16);
632 *Buffer = (uint8_t)((Record->PayloadLength & 0x0000ff00) >> PHNFCSTSHL8);
634 *Buffer = (uint8_t)((Record->PayloadLength & 0x000000ff));
674 for(i_data=0;i_data < (Record->PayloadLength) ;i_data++)
763 uint32_t *PayloadLength,
801 *PayloadLength = *(Record + *TypeLengthByte + 1);
802 if (*PayloadLength != 0)
804 /* PayloadLength Error */
814 *PayloadLength
818 if (*PayloadLength != 0)
820 /* PayloadLength Error */
878 *PayloadLength = *(Record + *TypeLengthByte + PH_FRINFC_NDEFRECORD_BUF_INC1);
884 *PayloadLength = ((((uint32_t)(*(Record + PH_FRINFC_NDEFRECORD_BUF_INC2))) << PHNFCSTSHL24) +