Home | History | Annotate | Download | only in avdt

Lines Matching refs:lcid

196 ** Description      Find adaption layer transport channel table entry by LCID.
202 tAVDT_TC_TBL *avdt_ad_tc_tbl_by_lcid(UINT16 lcid)
206 idx = avdt_cb.ad.lcid_tbl[lcid - L2CAP_BASE_APPL_CID];
381 L2CA_SetTxPriority(avdt_cb.ad.rt_tbl[p_tbl->ccb_idx][AVDT_CHAN_SIG].lcid, L2CAP_CHNL_PRIORITY_HIGH);
399 /* put lcid in event data */
403 open.lcid = avdt_cb.ad.rt_tbl[p_tbl->ccb_idx][p_tbl->tcid].lcid;
497 ** transport channel. It looks up the LCID of the channel
515 return L2CA_DataWrite(avdt_cb.ad.rt_tbl[avdt_ccb_to_idx(p_ccb)][tcid].lcid, p_buf);
538 UINT16 lcid;
576 if ((lcid = L2CA_ConnectReq(AVDT_PSM, p_ccb->peer_addr)) != 0)
578 /* if connect req ok, store tcid in lcid table */
579 avdt_cb.ad.lcid_tbl[lcid - L2CAP_BASE_APPL_CID] = avdt_ad_tc_tbl_to_idx(p_tbl);
581 (lcid - L2CAP_BASE_APPL_CID), avdt_ad_tc_tbl_to_idx(p_tbl));
583 avdt_cb.ad.rt_tbl[avdt_ccb_to_idx(p_ccb)][p_tbl->tcid].lcid = lcid;
584 AVDT_TRACE_DEBUG("avdt_cb.ad.rt_tbl[%d][%d].lcid = 0x%x",
586 lcid);
601 ** transport channel. The function looks up the LCID for the
630 L2CA_DisconnectReq(avdt_cb.ad.rt_tbl[avdt_ccb_to_idx(p_ccb)][tcid].lcid);