Searched defs:ui_pdu_length (Results 1 - 2 of 2) sorted by relevance

/system/nfc/src/nfc/llcp/
H A Dllcp_link.cc69 uint16_t ui_pdu_length, uint8_t* p_ui_pdu,
956 uint16_t ui_pdu_length, uint8_t* p_ui_pdu,
986 ui_pdu_length = p_msg->len; /* including LLCP header */
1001 if (available_bytes >= LLCP_PDU_AGF_LEN_SIZE + ui_pdu_length) {
1006 UINT16_TO_BE_STREAM(p_dst, ui_pdu_length);
1009 memcpy(p_dst, p_ui_pdu, ui_pdu_length);
1011 p_last_buf->len += LLCP_PDU_AGF_LEN_SIZE + ui_pdu_length;
1025 UINT16_TO_BE_STREAM(p_ui_pdu, ui_pdu_length);
1037 UINT16_TO_BE_STREAM(p_dst, ui_pdu_length);
1039 memcpy(p_dst, p_ui_pdu, ui_pdu_length);
955 llcp_link_proc_ui_pdu(uint8_t local_sap, uint8_t remote_sap, uint16_t ui_pdu_length, uint8_t* p_ui_pdu, NFC_HDR* p_msg) argument
[all...]
H A Dllcp_api.cc700 uint16_t pdu_hdr, ui_pdu_length; local
716 BE_STREAM_TO_UINT16(ui_pdu_length, p_ui_pdu);
726 if (max_data_len >= (uint32_t)(ui_pdu_length - LLCP_PDU_HEADER_SIZE -
729 *p_data_len = (uint32_t)(ui_pdu_length - LLCP_PDU_HEADER_SIZE -
735 p_buf->offset += LLCP_PDU_AGF_LEN_SIZE + ui_pdu_length;
736 p_buf->len -= LLCP_PDU_AGF_LEN_SIZE + ui_pdu_length;
786 uint16_t ui_pdu_length; local
800 BE_STREAM_TO_UINT16(ui_pdu_length, p_ui_pdu);
802 flushed_length += (uint32_t)(ui_pdu_length - LLCP_PDU_HEADER_SIZE -
807 p_buf->offset += LLCP_PDU_AGF_LEN_SIZE + ui_pdu_length;
[all...]

Completed in 347 milliseconds