/system/bt/stack/avct/ |
D | avct_l2c_br.cc | 76 void avct_l2c_br_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 77 void avct_l2c_br_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 227 void avct_l2c_br_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in avct_l2c_br_config_cfm_cback() argument 235 if (p_cfg->result == L2CAP_CFG_OK) { in avct_l2c_br_config_cfm_cback() 248 p_lcb->ch_result = p_cfg->result; in avct_l2c_br_config_cfm_cback() 265 void avct_l2c_br_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in avct_l2c_br_config_ind_cback() argument 273 p_cfg->flush_to_present = false; in avct_l2c_br_config_ind_cback() 274 p_cfg->qos_present = false; in avct_l2c_br_config_ind_cback() 282 if (p_cfg->mtu_present) { in avct_l2c_br_config_ind_cback() 283 p_lcb->peer_mtu = p_cfg->mtu; in avct_l2c_br_config_ind_cback() [all …]
|
D | avct_l2c.cc | 43 void avct_l2c_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 44 void avct_l2c_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 230 void avct_l2c_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in avct_l2c_config_cfm_cback() argument 237 lcid, p_lcb->ch_state, p_cfg->result); in avct_l2c_config_cfm_cback() 241 if (p_cfg->result == L2CAP_CFG_OK) { in avct_l2c_config_cfm_cback() 257 p_lcb->ch_result = p_cfg->result; in avct_l2c_config_cfm_cback() 277 void avct_l2c_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in avct_l2c_config_ind_cback() argument 286 if (p_cfg->mtu_present) { in avct_l2c_config_ind_cback() 287 p_lcb->peer_mtu = p_cfg->mtu; in avct_l2c_config_ind_cback() 293 memset(p_cfg, 0, sizeof(tL2CAP_CFG_INFO)); in avct_l2c_config_ind_cback() [all …]
|
/system/bt/stack/l2cap/ |
D | l2c_utils.cc | 537 void l2cu_send_peer_config_req(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg) { in l2cu_send_peer_config_req() argument 548 if (p_cfg->mtu_present) in l2cu_send_peer_config_req() 550 if (p_cfg->flush_to_present) in l2cu_send_peer_config_req() 552 if (p_cfg->qos_present) in l2cu_send_peer_config_req() 554 if (p_cfg->fcr_present) in l2cu_send_peer_config_req() 556 if (p_cfg->fcs_present) in l2cu_send_peer_config_req() 558 if (p_cfg->ext_flow_spec_present) in l2cu_send_peer_config_req() 573 UINT16_TO_STREAM(p, p_cfg->flags); /* Flags (continuation) */ in l2cu_send_peer_config_req() 576 if (p_cfg->mtu_present) { in l2cu_send_peer_config_req() 579 UINT16_TO_STREAM(p, p_cfg->mtu); in l2cu_send_peer_config_req() [all …]
|
D | l2c_fcr.cc | 1935 bool l2c_fcr_adj_our_req_options(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg) { in l2c_fcr_adj_our_req_options() argument 1937 CHECK(p_cfg != NULL); in l2c_fcr_adj_our_req_options() 1939 tL2CAP_FCR_OPTS* p_fcr = &p_cfg->fcr; in l2c_fcr_adj_our_req_options() 1954 if (p_cfg->fcr_present && p_fcr->mode != L2CAP_FCR_BASIC_MODE) { in l2c_fcr_adj_our_req_options() 1968 if (p_cfg->fcr_present && !(p_ccb->config_done & RECONFIG_FLAG)) { in l2c_fcr_adj_our_req_options() 1980 p_cfg->fcr_present = false; in l2c_fcr_adj_our_req_options() 1981 p_cfg->fcs_present = false; /* Illegal to use FCS option in basic mode */ in l2c_fcr_adj_our_req_options() 1982 p_cfg->ext_flow_spec_present = in l2c_fcr_adj_our_req_options() 2010 if ((p_cfg->mtu_present) && (p_cfg->mtu > p_ccb->max_rx_mtu)) { in l2c_fcr_adj_our_req_options() 2012 p_cfg->mtu, p_ccb->max_rx_mtu); in l2c_fcr_adj_our_req_options() [all …]
|
D | l2c_api.cc | 512 tL2CAP_LE_CFG_INFO* p_cfg) { in L2CA_ConnectLECocReq() argument 554 if (p_cfg) { in L2CA_ConnectLECocReq() 555 memcpy(&p_ccb->local_conn_cfg, p_cfg, sizeof(tL2CAP_LE_CFG_INFO)); in L2CA_ConnectLECocReq() 556 p_ccb->remote_credit_count = p_cfg->credits; in L2CA_ConnectLECocReq() 600 tL2CAP_LE_CFG_INFO* p_cfg) { in L2CA_ConnectLECocRsp() argument 627 if (p_cfg) { in L2CA_ConnectLECocRsp() 628 memcpy(&p_ccb->local_conn_cfg, p_cfg, sizeof(tL2CAP_LE_CFG_INFO)); in L2CA_ConnectLECocRsp() 629 p_ccb->remote_credit_count = p_cfg->credits; in L2CA_ConnectLECocRsp() 819 bool L2CA_ConfigReq(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in L2CA_ConfigReq() argument 825 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu); in L2CA_ConfigReq() [all …]
|
D | l2c_csm.cc | 736 tL2CAP_CFG_INFO* p_cfg = (tL2CAP_CFG_INFO*)p_data; in l2c_csm_config() local 756 cfg_result = l2cu_process_peer_cfg_req(p_ccb, p_cfg); in l2c_csm_config() 760 p_ccb->local_cid, (p_cfg->flags & L2CAP_CFG_FLAGS_MASK_CONT)); in l2c_csm_config() 761 (*p_ccb->p_rcb->api.pL2CA_ConfigInd_Cb)(p_ccb->local_cid, p_cfg); in l2c_csm_config() 770 l2cu_send_peer_config_rsp(p_ccb, p_cfg); in l2c_csm_config() 775 l2cu_process_peer_cfg_rsp(p_ccb, p_cfg); in l2c_csm_config() 777 if (p_cfg->result != L2CAP_CFG_PENDING) { in l2c_csm_config() 832 (*p_ccb->p_rcb->api.pL2CA_ConfigCfm_Cb)(p_ccb->local_cid, p_cfg); in l2c_csm_config() 840 if (!l2c_fcr_renegotiate_chan(p_ccb, p_cfg)) { in l2c_csm_config() 843 p_ccb->local_cid, p_cfg->result); in l2c_csm_config() [all …]
|
D | l2c_int.h | 621 extern void l2cu_send_peer_config_req(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg); 622 extern void l2cu_send_peer_config_rsp(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg); 684 tL2CAP_CFG_INFO* p_cfg); 685 extern void l2cu_process_peer_cfg_rsp(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg); 686 extern void l2cu_process_our_cfg_req(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg); 687 extern void l2cu_process_our_cfg_rsp(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg); 774 tL2CAP_CFG_INFO* p_cfg); 777 extern bool l2c_fcr_renegotiate_chan(tL2C_CCB* p_ccb, tL2CAP_CFG_INFO* p_cfg); 779 tL2CAP_CFG_INFO* p_cfg);
|
/system/bt/stack/avdt/ |
D | avdt_msg.cc | 275 static void avdt_msg_bld_cfg(uint8_t** p, AvdtpSepConfig* p_cfg) { in avdt_msg_bld_cfg() argument 282 if (p_cfg->psc_mask & AVDT_PSC_TRANS) { in avdt_msg_bld_cfg() 288 if (p_cfg->psc_mask & AVDT_PSC_REPORT) { in avdt_msg_bld_cfg() 294 if (p_cfg->num_codec != 0) { in avdt_msg_bld_cfg() 296 len = p_cfg->codec_info[0] + 1; in avdt_msg_bld_cfg() 299 memcpy(*p, p_cfg->codec_info, len); in avdt_msg_bld_cfg() 304 if (p_cfg->num_protect != 0) { in avdt_msg_bld_cfg() 306 len = p_cfg->protect_info[0] + 1; in avdt_msg_bld_cfg() 309 memcpy(*p, p_cfg->protect_info, len); in avdt_msg_bld_cfg() 314 if (p_cfg->psc_mask & AVDT_PSC_DELAY_RPT) { in avdt_msg_bld_cfg() [all …]
|
D | avdt_l2c.cc | 44 void avdt_l2c_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 45 void avdt_l2c_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 353 void avdt_l2c_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in avdt_l2c_config_cfm_cback() argument 366 if (p_cfg->result == L2CAP_CONN_OK) { in avdt_l2c_config_cfm_cback() 394 void avdt_l2c_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in avdt_l2c_config_ind_cback() argument 403 if (p_cfg->mtu_present) { in avdt_l2c_config_ind_cback() 404 p_tbl->peer_mtu = p_cfg->mtu; in avdt_l2c_config_ind_cback() 412 memset(p_cfg, 0, sizeof(tL2CAP_CFG_INFO)); in avdt_l2c_config_ind_cback() 413 p_cfg->result = L2CAP_CFG_OK; in avdt_l2c_config_ind_cback() 414 L2CA_ConfigRsp(lcid, p_cfg); in avdt_l2c_config_ind_cback()
|
D | avdt_scb_act.cc | 143 p_data->msg.svccap.p_cfg = &p_scb->curr_cfg; in avdt_scb_hdl_getconfig_cmd() 474 p_scb->req_cfg = *p_data->msg.reconfig_cmd.p_cfg; in avdt_scb_hdl_reconfig_cmd() 508 p_data->msg.svccap.p_cfg = &p_scb->curr_cfg; in avdt_scb_hdl_reconfig_rsp() 578 A2DP_CodecInfoString(p_data->msg.config_cmd.p_cfg->codec_info).c_str()); in avdt_scb_hdl_setconfig_cmd() 579 AvdtpSepConfig* p_cfg = p_data->msg.config_cmd.p_cfg; in avdt_scb_hdl_setconfig_cmd() local 581 A2DP_GetCodecType(p_cfg->codec_info)) { in avdt_scb_hdl_setconfig_cmd() 598 p_scb->req_cfg = *p_cfg; in avdt_scb_hdl_setconfig_cmd() 1179 A2DP_CodecInfoString(p_data->msg.config_cmd.p_cfg->codec_info).c_str()); in avdt_scb_snd_reconfig_req() 1181 p_scb->req_cfg = *p_data->msg.config_cmd.p_cfg; in avdt_scb_snd_reconfig_req() 1281 AvdtpSepConfig *p_req, *p_cfg; in avdt_scb_snd_setconfig_req() local [all …]
|
D | avdt_api.cc | 370 uint8_t seid, AvdtpSepConfig* p_cfg, in AVDT_GetCapReq() argument 383 getcap.p_cfg = p_cfg; in AVDT_GetCapReq() 444 AvdtpSepConfig* p_cfg) { in AVDT_OpenReq() argument 478 A2DP_CodecInfoString(p_cfg->codec_info).c_str()); in AVDT_OpenReq() 483 evt.msg.config_cmd.p_cfg = p_cfg; in AVDT_OpenReq() 699 uint16_t AVDT_ReconfigReq(uint8_t handle, AvdtpSepConfig* p_cfg) { in AVDT_ReconfigReq() argument 714 p_cfg->psc_mask = 0; in AVDT_ReconfigReq() 715 evt.msg.reconfig_cmd.p_cfg = p_cfg; in AVDT_ReconfigReq()
|
/system/bt/stack/sdp/ |
D | sdp_main.cc | 55 static void sdp_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 56 static void sdp_config_cfm(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 296 static void sdp_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { in sdp_config_ind() argument 307 if (!p_cfg->mtu_present) { in sdp_config_ind() 312 if (p_cfg->mtu > SDP_MTU_SIZE) in sdp_config_ind() 315 p_ccb->rem_mtu_size = p_cfg->mtu; in sdp_config_ind() 319 p_cfg->flush_to_present = false; in sdp_config_ind() 320 p_cfg->mtu_present = false; in sdp_config_ind() 321 p_cfg->result = L2CAP_CFG_OK; in sdp_config_ind() 324 if (p_cfg->fcr_present) { in sdp_config_ind() [all …]
|
/system/bt/stack/rfcomm/ |
D | rfc_mx_fsm.cc | 58 static void rfc_mx_conf_ind(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg); 59 static void rfc_mx_conf_cnf(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg); 585 static void rfc_mx_conf_cnf(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg) { in rfc_mx_conf_cnf() argument 586 RFCOMM_TRACE_EVENT("rfc_mx_conf_cnf p_cfg:%08x result:%d ", p_cfg, in rfc_mx_conf_cnf() 587 (p_cfg) ? p_cfg->result : 0); in rfc_mx_conf_cnf() 589 if (p_cfg->result != L2CAP_CFG_OK) { in rfc_mx_conf_cnf() 595 PORT_StartCnf(p_mcb, p_cfg->result); in rfc_mx_conf_cnf() 626 static void rfc_mx_conf_ind(tRFC_MCB* p_mcb, tL2CAP_CFG_INFO* p_cfg) { in rfc_mx_conf_ind() argument 629 if (p_cfg->mtu_present) { in rfc_mx_conf_ind() 630 p_mcb->peer_l2cap_mtu = p_cfg->mtu - RFCOMM_MIN_OFFSET - 1; in rfc_mx_conf_ind() [all …]
|
D | rfc_l2cap_if.cc | 47 static void RFCOMM_ConfigInd(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 48 static void RFCOMM_ConfigCnf(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg); 209 void RFCOMM_ConfigInd(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in RFCOMM_ConfigInd() argument 217 rfc_mx_sm_execute(p_mcb, RFC_MX_EVENT_CONF_IND, (void*)p_cfg); in RFCOMM_ConfigInd() 229 void RFCOMM_ConfigCnf(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in RFCOMM_ConfigCnf() argument 237 rfc_mx_sm_execute(p_mcb, RFC_MX_EVENT_CONF_CNF, (void*)p_cfg); in RFCOMM_ConfigCnf()
|
/system/bt/stack/test/common/ |
D | mock_l2cap_layer.cc | 51 bool L2CA_ConfigReq(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in L2CA_ConfigReq() argument 52 return l2cap_interface->ConfigRequest(cid, p_cfg); in L2CA_ConfigReq() 55 bool L2CA_ConfigRsp(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in L2CA_ConfigRsp() argument 56 return l2cap_interface->ConfigResponse(cid, p_cfg); in L2CA_ConfigRsp()
|
D | mock_l2cap_layer.h | 37 virtual bool ConfigRequest(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) = 0; 38 virtual bool ConfigResponse(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) = 0; 54 MOCK_METHOD2(ConfigRequest, bool(uint16_t cid, tL2CAP_CFG_INFO* p_cfg)); 55 MOCK_METHOD2(ConfigResponse, bool(uint16_t cid, tL2CAP_CFG_INFO* p_cfg));
|
/system/bt/stack/bnep/ |
D | bnep_main.cc | 62 static void bnep_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 63 static void bnep_config_cfm(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 208 static void bnep_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { in bnep_config_ind() argument 223 if ((!p_cfg->mtu_present) || (p_cfg->mtu < BNEP_MIN_MTU_SIZE)) { in bnep_config_ind() 224 mtu = p_cfg->mtu; in bnep_config_ind() 225 p_cfg->flush_to_present = false; in bnep_config_ind() 226 p_cfg->mtu_present = true; in bnep_config_ind() 227 p_cfg->mtu = BNEP_MIN_MTU_SIZE; in bnep_config_ind() 228 p_cfg->result = result = L2CAP_CFG_UNACCEPTABLE_PARAMS; in bnep_config_ind() 230 if (p_cfg->mtu > BNEP_MTU_SIZE) in bnep_config_ind() [all …]
|
/system/bt/stack/hid/ |
D | hidd_conn.cc | 50 static void hidd_l2cif_config_ind(uint16_t cid, tL2CAP_CFG_INFO* p_cfg); 51 static void hidd_l2cif_config_cfm(uint16_t cid, tL2CAP_CFG_INFO* p_cfg); 335 static void hidd_l2cif_config_ind(uint16_t cid, tL2CAP_CFG_INFO* p_cfg) { in hidd_l2cif_config_ind() argument 347 if ((!p_cfg->mtu_present) || (p_cfg->mtu > HID_DEV_MTU_SIZE)) in hidd_l2cif_config_ind() 350 p_hcon->rem_mtu_size = p_cfg->mtu; in hidd_l2cif_config_ind() 353 p_cfg->flush_to_present = FALSE; in hidd_l2cif_config_ind() 354 p_cfg->mtu_present = FALSE; in hidd_l2cif_config_ind() 355 p_cfg->result = L2CAP_CFG_OK; in hidd_l2cif_config_ind() 357 if (cid == p_hcon->intr_cid && hd_cb.use_in_qos && !p_cfg->qos_present) { in hidd_l2cif_config_ind() 358 p_cfg->qos_present = TRUE; in hidd_l2cif_config_ind() [all …]
|
D | hidh_conn.cc | 58 static void hidh_l2cif_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 59 static void hidh_l2cif_config_cfm(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 457 static void hidh_l2cif_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { in hidh_l2cif_config_ind() argument 477 if ((!p_cfg->mtu_present) || (p_cfg->mtu > HID_HOST_MTU)) in hidh_l2cif_config_ind() 480 p_hcon->rem_mtu_size = p_cfg->mtu; in hidh_l2cif_config_ind() 483 p_cfg->flush_to_present = false; in hidh_l2cif_config_ind() 484 p_cfg->mtu_present = false; in hidh_l2cif_config_ind() 485 p_cfg->result = L2CAP_CFG_OK; in hidh_l2cif_config_ind() 487 L2CA_ConfigRsp(l2cap_cid, p_cfg); in hidh_l2cif_config_ind() 542 static void hidh_l2cif_config_cfm(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { in hidh_l2cif_config_cfm() argument [all …]
|
/system/bt/stack/gap/ |
D | gap_conn.cc | 90 static void gap_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 91 static void gap_config_cfm(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg); 170 uint16_t le_mps, tL2CAP_CFG_INFO* p_cfg, in GAP_ConnOpen() argument 209 if (p_cfg) p_ccb->cfg = *p_cfg; in GAP_ConnOpen() 214 p_ccb->local_coc_cfg.mtu = p_cfg->mtu; in GAP_ConnOpen() 560 uint16_t GAP_ConnReconfig(uint16_t gap_handle, tL2CAP_CFG_INFO* p_cfg) { in GAP_ConnReconfig() argument 565 p_ccb->cfg = *p_cfg; in GAP_ConnReconfig() 568 L2CA_CONFIG_REQ(p_ccb->connection_id, p_cfg); in GAP_ConnReconfig() 889 static void gap_config_ind(uint16_t l2cap_cid, tL2CAP_CFG_INFO* p_cfg) { in gap_config_ind() argument 905 if ((!p_cfg->mtu_present) || (p_cfg->mtu > local_mtu_size)) { in gap_config_ind() [all …]
|
/system/nfc/src/nfa/dm/ |
D | nfa_dm_discover.cc | 397 tNFA_LISTEN_CFG* p_cfg = &nfa_dm_cb.disc_cb.excl_listen_config; in nfa_dm_set_rf_listen_mode_raw_config() local 407 (p_cfg->la_enable)) { in nfa_dm_set_rf_listen_mode_raw_config() 412 UINT8_TO_STREAM(p, p_cfg->la_bit_frame_sdd); in nfa_dm_set_rf_listen_mode_raw_config() 416 UINT8_TO_STREAM(p, p_cfg->la_platform_config); in nfa_dm_set_rf_listen_mode_raw_config() 420 UINT8_TO_STREAM(p, p_cfg->la_sel_info); in nfa_dm_set_rf_listen_mode_raw_config() 422 if (p_cfg->la_platform_config == NCI_PARAM_PLATFORM_T1T) { in nfa_dm_set_rf_listen_mode_raw_config() 426 if (p_cfg->la_sel_info & NCI_PARAM_SEL_INFO_ISODEP) { in nfa_dm_set_rf_listen_mode_raw_config() 430 if (p_cfg->la_sel_info & NCI_PARAM_SEL_INFO_NFCDEP) { in nfa_dm_set_rf_listen_mode_raw_config() 441 UINT8_TO_STREAM(p, p_cfg->la_nfcid1_len); in nfa_dm_set_rf_listen_mode_raw_config() 442 ARRAY_TO_STREAM(p, p_cfg->la_nfcid1, p_cfg->la_nfcid1_len); in nfa_dm_set_rf_listen_mode_raw_config() [all …]
|
/system/bt/stack/gatt/ |
D | gatt_main.cc | 63 tL2CAP_CFG_INFO* p_cfg); 65 tL2CAP_CFG_INFO* p_cfg); 656 void gatt_l2cif_config_cfm_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in gatt_l2cif_config_cfm_cback() argument 666 if (p_cfg->result != L2CAP_CFG_OK) { in gatt_l2cif_config_cfm_cback() 694 void gatt_l2cif_config_ind_cback(uint16_t lcid, tL2CAP_CFG_INFO* p_cfg) { in gatt_l2cif_config_ind_cback() argument 701 if (p_cfg->mtu_present && in gatt_l2cif_config_ind_cback() 702 (p_cfg->mtu >= GATT_MIN_BR_MTU_SIZE && p_cfg->mtu < L2CAP_DEFAULT_MTU)) in gatt_l2cif_config_ind_cback() 703 p_tcb->payload_size = p_cfg->mtu; in gatt_l2cif_config_ind_cback() 708 memset(p_cfg, 0, sizeof(tL2CAP_CFG_INFO)); in gatt_l2cif_config_ind_cback() 709 p_cfg->result = L2CAP_CFG_OK; in gatt_l2cif_config_ind_cback() [all …]
|
/system/bt/stack/include/ |
D | avdt_api.h | 367 AvdtpSepConfig* p_cfg; /* Pointer to configuration for this SEP */ member 373 AvdtpSepConfig* p_cfg; /* Pointer to configuration for this SEP */ member 644 uint8_t seid, AvdtpSepConfig* p_cfg, 676 AvdtpSepConfig* p_cfg); 760 extern uint16_t AVDT_ReconfigReq(uint8_t handle, AvdtpSepConfig* p_cfg);
|
D | a2dp_vendor_ldac.h | 247 bool A2DP_VendorInitCodecConfigLdac(AvdtpSepConfig* p_cfg); 251 bool A2DP_VendorInitCodecConfigLdacSink(AvdtpSepConfig* p_cfg);
|
D | a2dp_sbc.h | 273 bool A2DP_InitCodecConfigSbc(AvdtpSepConfig* p_cfg); 277 bool A2DP_InitCodecConfigSbcSink(AvdtpSepConfig* p_cfg);
|