Home
last modified time | relevance | path

Searched refs:BT_HDR_SIZE (Results 1 – 25 of 34) sorted by relevance

12

/external/bluetooth/bluedroid/stack/avrc/
Davrc_int.h83 #define AVRC_MIN_VENDOR_SIZE (AVRC_MSG_VENDOR_OFFSET + BT_HDR_SIZE + AVRC_MIN_META_HDR_SIZE)
87 #define AVRC_MIN_PASS_THRU_SIZE (AVRC_MSG_PASS_THRU_OFFSET + BT_HDR_SIZE + 4)
89 #define AVRC_MIN_BROWSE_SIZE (AVCT_BROWSE_OFFSET + BT_HDR_SIZE + AVRC_MIN_BROWSE_HDR_SIZE)
Davrc_api.c179 p_pkt = (BT_HDR *)GKI_getbuf((UINT16)(AVRC_PACKET_LEN + AVCT_MSG_OFFSET + BT_HDR_SIZE)); in avrc_send_continue_frag()
1018 + BT_HDR_SIZE)); in AVRC_MsgReq()
Davrc_bld_tg.c315 len_left = GKI_get_buf_size(p_pkt) - BT_HDR_SIZE - p_pkt->offset - p_pkt->len; in avrc_bld_app_setting_text_rsp()
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Dandroid_logmsg.cpp201 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1; in DispHciCmd()
203 int data_len = BT_HDR_SIZE + p_buf->offset + p_buf->len; in DispHciCmd()
219 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1; in DispHciEvt()
221 int data_len = BT_HDR_SIZE + p_buf->offset + p_buf->len; in DispHciEvt()
245 UINT32 nBytes = ((BT_HDR_SIZE + p_buf->offset + p_buf->len)*2)+1; in DispLLCP()
247 int data_len = BT_HDR_SIZE + p_buf->offset + p_buf->len; in DispLLCP()
Duserial_linux.c155 #define READ_LIMIT (USERIAL_POOL_BUF_SIZE-BT_HDR_SIZE)
/external/libnfc-nci/src/nfc/int/
Dce_int.h140 #define CE_T4T_MAX_LE (NFC_CE_POOL_BUF_SIZE - BT_HDR_SIZE - NCI_MSG_OFFSET_SIZE - NCI_DAT…
143 #define CE_T4T_MAX_LC (NFC_CE_POOL_BUF_SIZE - BT_HDR_SIZE - NCI_DATA_HDR_SIZE - T4T_CMD_M…
Drw_int.h415 #define RW_T4T_MAX_DATA_PER_READ (NFC_RW_POOL_BUF_SIZE - BT_HDR_SIZE - NCI_DATA_HDR_SIZE …
418 #define RW_T4T_MAX_DATA_PER_WRITE (NFC_RW_POOL_BUF_SIZE - BT_HDR_SIZE - NCI_MSG_OFFSET_SIZ…
/external/bluetooth/bluedroid/stack/btu/
Dbtu_task.c659 if ((p_msg = (BT_HDR *)GKI_getbuf(BT_HDR_SIZE)) != NULL) in btu_start_timer()
715 if ((p_msg = (BT_HDR *)GKI_getbuf(BT_HDR_SIZE)) != NULL) in btu_stop_timer()
758 if ((p_msg = (BT_HDR *)GKI_getbuf(BT_HDR_SIZE)) != NULL) in btu_start_quick_timer()
876 BT_HDR *p_msg = (BT_HDR *)GKI_getbuf(BT_HDR_SIZE); in btu_start_timer_oneshot()
894 BT_HDR *p_msg = (BT_HDR *)GKI_getbuf(BT_HDR_SIZE); in btu_stop_timer_oneshot()
/external/libnfc-nci/src/nfc/nfc/
Dnfc_task.c70 if ((p_msg = (BT_HDR *) GKI_getbuf (BT_HDR_SIZE)) != NULL) in nfc_start_timer()
192 if ((p_msg = (BT_HDR *) GKI_getbuf (BT_HDR_SIZE)) != NULL) in nfc_start_quick_timer()
Dnfc_ncif.c1500 if (size < (BT_HDR_SIZE + p_last->len + p_last->offset + len)) in nfc_ncif_proc_data()
1510 memcpy(p_max, p_last, BT_HDR_SIZE); in nfc_ncif_proc_data()
Dnfc_main.c915 nfc_cb.p_disc_pending = GKI_getbuf ((UINT16)(BT_HDR_SIZE + 1 + params_size)); in NFC_DiscoveryStart()
/external/libnfc-nci/src/nfc/llcp/
Dllcp_sdp.c139 - BT_HDR_SIZE - llcp_cb.sdp_cb.p_snl->offset in llcp_sdp_send_sdreq()
244 - BT_HDR_SIZE - llcp_cb.sdp_cb.p_snl->offset in llcp_sdp_send_sdres()
Dllcp_dlc.c958 …available_bytes = GKI_get_buf_size (p_last_buf) - BT_HDR_SIZE - p_last_buf->offset - p_last_buf->l… in llcp_dlc_proc_i_pdu()
/external/libnfc-nci/src/include/
Dnfc_target.h375 #define LLCP_MIU (LLCP_POOL_BUF_SIZE - BT_HDR_SIZE - NCI_MSG_OFFSET_SIZE - NCI_D…
Dbt_types.h191 #define BT_HDR_SIZE (sizeof (BT_HDR)) macro
/external/libnfc-nci/src/hal/include/
Dnci_defs.h607 #define NCI_GET_CMD_BUF(paramlen) ((BT_HDR *) GKI_getbuf ((UINT16) (BT_HDR_SIZE + NCI_MSG_HDR_SI…
/external/libnfc-nci/src/nfa/ee/
Dnfa_ee_api.c547 else if ((p_msg = (BT_HDR *) GKI_getbuf (BT_HDR_SIZE)) != NULL) in NFA_EeUpdateNow()
/external/libnfc-nci/src/nfa/dm/
Dnfa_dm_api.c871 size = BT_HDR_SIZE + NCI_MSG_OFFSET_SIZE + NCI_DATA_HDR_SIZE + data_len; in NFA_SendRawFrame()
Dnfa_dm_act.c863 p_cmd->offset = sizeof (tNFA_DM_API_SEND_VSC) - BT_HDR_SIZE; in nfa_dm_act_send_vsc()
/external/bluetooth/bluedroid/stack/avct/
Davct_lcb_act.c526 UINT16 buf_size = p_lcb->peer_mtu + L2CAP_MIN_OFFSET + BT_HDR_SIZE; in avct_lcb_send_msg()
/external/bluetooth/bluedroid/stack/include/
Dbt_types.h215 #define BT_HDR_SIZE (sizeof (BT_HDR)) macro
Dobx_api.h29 #define OBX_MAX_MTU (OBX_LRG_DATA_POOL_SIZE - BT_HDR_SIZE - OBX_HDR_OFFSET)
/external/bluetooth/bluedroid/stack/avdt/
Davdt_scb_act.c2120 buf_size = p_tbl->peer_mtu + BT_HDR_SIZE; in avdt_scb_queue_frags()
2127 mtu_used = buf_size - BT_HDR_SIZE; in avdt_scb_queue_frags()
/external/bluetooth/bluedroid/stack/gap/
Dgap_conn.c1211 if ((p_msg = (BT_HDR*)GKI_getbuf(BT_HDR_SIZE)) != NULL) in gap_send_event()
/external/bluetooth/bluedroid/bta/av/
Dbta_av_main.c1193 copy_size = BT_HDR_SIZE + p_buf->len + p_buf->offset; in bta_av_dup_audio_buf()

12