Lines Matching full:payload
114 /* Payload length - can be 1 or 4 bytes */
119 /* if less than 4 bytes payload length */
177 /* An empty record must NOT have a type, ID or payload */
239 /* Payload length - can be 1 or 4 bytes */
283 /* Payload length - can be 1 or 4 bytes */
336 /* Payload length - can be 1 or 4 bytes */
384 /* Payload length - can be 1 or 4 bytes */
433 /* Payload length - can be 1 or 4 bytes */
479 /* Payload length - can be 1 or 4 bytes */
540 /* Payload length - can be 1 or 4 bytes */
598 /* Payload length - can be 1 or 4 bytes */
659 /* Payload length - can be 1 or 4 bytes */
709 /* Skip the payload length */
748 /* Skip the payload length */
772 ** Description This function gets a pointer to the payload for the given NDEF record.
774 ** Returns a pointer to the payload (or NULL none). Payload len filled in.
788 /* Next is the payload length (1 or 4 bytes) */
802 /* p_rec now points to the start of the type field. The ID field follows it, then the payload */
884 /* Payload length - can be 1 or 4 bytes */
912 /* And lastly the payload. If NULL, the app just wants to reserve memory */
980 /* Payload length - can be 1 or 4 bytes */
1008 /* And lastly the payload. If NULL, the app just wants to reserve memory */
1071 ** Description This function appends extra payload to a specific record in the
1074 ** Returns OK, or error if the extra payload did not fit
1092 /* Next is the payload length (1 or 4 bytes) */
1108 /* Previous payload may be < 256, and this addition may make it larger than 256 */
1109 /* If that were to happen, the payload length field goes from 1 byte to 4 bytes */
1117 /* Point to payload length field */
1136 /* Point to the end of the previous payload */
1139 /* If we are not the last record, make space for the extra payload */
1143 /* Now copy in the additional payload data */
1155 ** Description This function replaces the payload of a specific record in the
1158 ** Returns OK, or error if the new payload did not fit
1176 /* Next is the payload length (1 or 4 bytes) */
1190 /* Point to payload length field again */
1195 /* New payload is larger than the previous */
1198 /* If the previous payload length was < 256, and new is > 255 */
1199 /* the payload length field goes from 1 byte to 4 bytes */
1221 /* Point to the end of the previous payload */
1224 /* If we are not the last record, make space for the extra payload */
1232 /* New payload is smaller than the previous */
1235 /* If the previous payload was > 256, and new is less than 256 */
1236 /* the payload length field goes from 4 bytes to 1 byte */
1253 /* Point to the end of the previous payload */
1256 /* If we are not the last record, remove the extra space from the previous payload */
1263 /* Now copy in the new payload data */
1294 /* Skip the payload length */
1367 /* Skip the payload length */
1547 /* If this is the continuation of a chunk, append the payload to the previous */