Lines Matching refs:lcid
598 bool L2CA_GetPeerLECocConfig(uint16_t lcid, tL2CAP_LE_CFG_INFO* peer_cfg) { in L2CA_GetPeerLECocConfig() argument
600 return bluetooth::shim::L2CA_GetPeerLECocConfig(lcid, peer_cfg); in L2CA_GetPeerLECocConfig()
603 L2CAP_TRACE_API("%s CID: 0x%04x", __func__, lcid); in L2CA_GetPeerLECocConfig()
605 tL2C_CCB* p_ccb = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_GetPeerLECocConfig()
607 L2CAP_TRACE_ERROR("%s No CCB for CID:0x%04x", __func__, lcid); in L2CA_GetPeerLECocConfig()
910 bool L2CA_GetRemoteCid(uint16_t lcid, uint16_t* rcid) { in L2CA_GetRemoteCid() argument
912 return bluetooth::shim::L2CA_GetRemoteCid(lcid, rcid); in L2CA_GetRemoteCid()
915 tL2C_CCB* control_block = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_GetRemoteCid()
1543 uint16_t L2CA_FlushChannel(uint16_t lcid, uint16_t num_to_flush) { in L2CA_FlushChannel() argument
1545 return bluetooth::shim::L2CA_FlushChannel(lcid, num_to_flush); in L2CA_FlushChannel()
1552 p_ccb = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_FlushChannel()
1556 "L2CA_FlushChannel() abnormally returning 0 CID: 0x%04x", lcid); in L2CA_FlushChannel()
1565 lcid, num_to_flush, fixed_queue_length(p_ccb->xmit_hold_q), in L2CA_FlushChannel()
1568 L2CAP_TRACE_API("L2CA_FlushChannel (QUERY) CID: 0x%04x", lcid); in L2CA_FlushChannel()
1590 if ((p_buf->layer_specific == 0) && (p_buf->event == lcid)) { in L2CA_FlushChannel()
1617 if (p_buf->event == lcid) num_left++; in L2CA_FlushChannel()