Home
last modified time | relevance | path

Searched refs:pbf (Results 1 – 2 of 2) sorted by relevance

/system/nfc/src/include/
Dnci_defs.h103 #define NCI_MSG_PRS_HDR0(p, mt, pbf, gid) \ argument
105 (pbf) = (*(p)&NCI_PBF_MASK) >> NCI_PBF_SHIFT; \
121 #define NCI_DATA_PBLD_HDR(p, pbf, cid, len) \ argument
122 *(p)++ = (uint8_t)(((pbf) << NCI_PBF_SHIFT) | (cid)); \
126 #define NCI_DATA_PRS_HDR(p, pbf, cid, len) \ argument
127 (pbf) = (*(p)&NCI_PBF_MASK) >> NCI_PBF_SHIFT; \
/system/nfc/src/nfc/nfc/
Dnfc_ncif.cc146 uint8_t pbf = 1; in nfc_ncif_send_data() local
185 pbf = 0; /* last fragment */ in nfc_ncif_send_data()
216 p->layer_specific = pbf; in nfc_ncif_send_data()
221 NCI_DATA_PBLD_HDR(pp, pbf, hdr0, ulen); in nfc_ncif_send_data()
372 uint8_t mt, pbf, gid, *p; in nfc_ncif_process_event() local
398 NCI_MSG_PRS_HDR0(p, mt, pbf, gid); in nfc_ncif_process_event()
420 NCI_MSG_PRS_HDR0(p_old, old_mt, pbf, old_gid); in nfc_ncif_process_event()
1647 uint8_t pbf; in nfc_ncif_proc_data() local
1657 NCI_DATA_PRS_HDR(pp, pbf, cid, len); in nfc_ncif_proc_data()
1664 if (pbf) { in nfc_ncif_proc_data()