Home
last modified time | relevance | path

Searched refs:NCI_HDR_SIZE (Results 1 – 4 of 4) sorted by relevance

/hardware/samsung/nfc/halimpl/include/
Dhal_msg.h26 #define NCI_HDR_SIZE 3 macro
28 #define NCI_CTRL_SIZE (NCI_HDR_SIZE + NCI_MAX_PAYLOAD)
50 #define NCI_PKT_LEN(x) (NCI_HDR_SIZE + NCI_LEN(x))
/hardware/samsung/nfc/halimpl/src/
Ddevice.cc236 uint8_t header[NCI_HDR_SIZE]; in read_thread()
298 ret = device_read(header, NCI_HDR_SIZE); in read_thread()
301 else if (ret != NCI_HDR_SIZE) { in read_thread()
316 memcpy((void*)msg->param, (void*)header, NCI_HDR_SIZE); in read_thread()
Dhal_nci.cc29 size_t len = (size_t)(pkt->len + NCI_HDR_SIZE); in hal_nci_send()
138 data_trace("Recv", NCI_HDR_SIZE + ret, msg->param); in nci_read_payload()
159 (size_t)(nfc_hal_info.nci_last_pkt->len + NCI_HDR_SIZE)); in nfc_hal_prehandler()
Dhal.cc49 size_t len = NCI_LEN(pkt) + NCI_HDR_SIZE; in nfc_data_callback()