/external/bluetooth/bluedroid/stack/include/ |
mca_api.h | 47 #define MCA_BAD_MDL_ID 6 /* MDL ID is not valid for the current API */ 56 #define MCA_CREATE_IND_EVT 1 /* create mdl indication */ 57 #define MCA_CREATE_CFM_EVT 2 /* create mdl confirm */ 58 #define MCA_RECONNECT_IND_EVT 3 /* reconnect mdl indication */ 59 #define MCA_RECONNECT_CFM_EVT 4 /* reconnect mdl confirm */ 60 #define MCA_ABORT_IND_EVT 5 /* abort mdl indication */ 61 #define MCA_ABORT_CFM_EVT 6 /* abort mdl confirm */ 62 #define MCA_DELETE_IND_EVT 7 /* delete mdl indication */ 63 #define MCA_DELETE_CFM_EVT 8 /* delete mdl confirm */ 90 typedef void (tMCA_DATA_CBACK)(tMCA_DL mdl, BT_HDR *p_pkt) 171 tMCA_DL mdl; \/* The handle for the data channel *\/ member in struct:__anon1119 178 tMCA_DL mdl; \/* The handle for the data channel *\/ member in struct:__anon1120 185 tMCA_DL mdl; \/* The handle for the data channel *\/ member in struct:__anon1121 [all...] |
/external/bluetooth/bluedroid/stack/mcap/ |
mca_dact.c | 44 evt_data.cong_chg.mdl = mca_dcb_to_hdl(p_dcb); 71 evt_data.open_cfm.mdl = mca_dcb_to_hdl(p_dcb);
|
mca_api.c | 306 /* make sure no MDL exists for this MDEP */ 412 ** with the given MDL ID. 443 MCA_TRACE_ERROR2 ("bad peer dep id:%d or bad mdl id: %d ", peer_dep_id, mdl_id); 449 MCA_TRACE_ERROR1 ("mdl id: %d is used in the control link", mdl_id); 569 tMCA_RESULT MCA_CloseReq(tMCA_DL mdl) 572 tMCA_DCB *p_dcb = mca_dcb_by_hdl(mdl); 574 MCA_TRACE_API1 ("MCA_CloseReq: %d ", mdl); 619 MCA_TRACE_ERROR1 ("bad mdl id: %d ", mdl_id); 625 MCA_TRACE_ERROR1 ("mdl id: %d is used in the control link", mdl_id); 701 MCA_TRACE_ERROR0 ("Out of MDL for this MDEP") [all...] |
mca_dsm.c | 207 ** Description This function is called to check the number of free mdl for 210 ** Returns the number of free mdl for the given dep 267 evt_data.close_cfm.mdl = mca_dcb_to_hdl(p_dcb); 318 ** disconnect the mdl
|
/external/bluetooth/bluedroid/btif/include/ |
btif_hl.h | 199 btif_hl_mdl_cb_t mdl[BTA_HL_NUM_MDLS_PER_MCL]; member in struct:__anon642 305 #define BTIF_HL_GET_MDL_CB_PTR(app_idx, mcl_idx, mdl_idx) &(btif_hl_cb.acb[(app_idx)].mcb[(mcl_idx)].mdl[mdl_idx])
|
/external/bluetooth/bluedroid/bta/hl/ |
bta_hl_utils.c | 268 ** Description This function clean up the specified MDL control block 671 if (bta_hl_find_mdl_idx_using_handle((tBTA_HL_MDL_HANDLE)p_msg->mca_evt.mca_data.close_cfm.mdl, 679 if (bta_hl_find_mdl_idx_using_handle((tBTA_HL_MDL_HANDLE)p_msg->mca_evt.mca_data.close_ind.mdl, 697 if (bta_hl_find_mdl_idx_using_handle((tBTA_HL_MDL_HANDLE)p_msg->mca_evt.mca_data.cong_chg.mdl, 793 ** Description This function allocates a MDL ID 795 ** Returns UINT16 - MDL ID 812 if (p_mcb->mdl[i].in_use && 814 (p_mcb->mdl[i].mdl_id == mdl_id) ) 823 /* start from the beginning to get another MDL value*/ 835 /* found a new MDL value * [all...] |
bta_hl_int.h | 490 tBTA_HL_MDL_CB mdl[BTA_HL_NUM_MDLS_PER_MCL]; member in struct:__anon309 592 #define BTA_HL_GET_MDL_CB_PTR(app_idx, mcl_idx, mdl_idx) &(bta_hl_cb.acb[(app_idx)].mcb[(mcl_idx)].mdl[mdl_idx]) 705 extern void bta_hl_mcap_data_cback(tMCA_DL mdl, BT_HDR *p_pkt); [all...] |
bta_hl_act.c | 894 p_dcb->mdl_handle = (tBTA_HL_MDL_HANDLE) p_open_ind->mdl; [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_hl.c | 251 if (p_mcb->mdl[x].in_use) 362 ** Description Find the MDL index using MDL ID 376 if (p_mcb->mdl[i].in_use && 378 (p_mcb->mdl[i].mdl_id== mdl_id)) 459 if (p_mcb->mdl[i].in_use && p_mcb->mdl[i].is_the_first_reliable) 473 ** Description Cleanup the delete mdl control block 504 ** Description Cleanup the MDL control block 721 BTIF_TRACE_DEBUG1("found streaming mode mdl index=%d", j) [all...] |