Lines Matching refs:RawRecord
449 * \param[in] RawRecord The Pointer to the buffer, selected out of the array returned by
456 * - The "RawRecord" Data buffer must exist at least as long as the function execution time plus the time
458 * - Using the "RawRecord" and "RawRecordMaxSize" parameters the function internally checks whether the
464 uint8_t *RawRecord)
475 if (Record == NULL || RawRecord == NULL)
485 Record->Flags = phFriNfc_NdefRecord_RecordFlag ( RawRecord);
488 Tnf = phFriNfc_NdefRecord_TypeNameFormat( RawRecord);
493 Status = phFriNfc_NdefRecord_RecordIDCheck ( RawRecord,
503 RawRecord = (RawRecord + PayloadLengthByte + IDLengthByte + TypeLengthByte + PH_FRINFC_NDEFRECORD_BUF_INC1);
504 Record->Type = RawRecord;
506 RawRecord = (RawRecord + Record->TypeLength);
510 Record->Id = RawRecord;
513 RawRecord = RawRecord + Record->IdLength;
514 Record->PayloadData = RawRecord;