Lines Matching refs:lcid
606 bool L2CA_GetPeerLECocConfig(uint16_t lcid, tL2CAP_LE_CFG_INFO* peer_cfg) { in L2CA_GetPeerLECocConfig() argument
607 log::verbose("CID: 0x{:04x}", lcid); in L2CA_GetPeerLECocConfig()
609 tL2C_CCB* p_ccb = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_GetPeerLECocConfig()
611 log::error("No CCB for CID:0x{:04x}", lcid); in L2CA_GetPeerLECocConfig()
631 uint16_t L2CA_GetPeerLECocCredit(const RawAddress& bd_addr, uint16_t lcid) { in L2CA_GetPeerLECocCredit() argument
640 tL2C_CCB* p_ccb = l2cu_find_ccb_by_cid(p_lcb, lcid); in L2CA_GetPeerLECocCredit()
642 log::error("No CCB for CID:0x{:04x}", lcid); in L2CA_GetPeerLECocCredit()
946 bool L2CA_GetRemoteChannelId(uint16_t lcid, uint16_t* rcid) { in L2CA_GetRemoteChannelId() argument
949 log::verbose("LCID: 0x{:04x}", lcid); in L2CA_GetRemoteChannelId()
950 tL2C_CCB* p_ccb = l2cu_find_ccb_by_cid(nullptr, lcid); in L2CA_GetRemoteChannelId()
952 log::error("No CCB for CID:0x{:04x}", lcid); in L2CA_GetRemoteChannelId()
1555 uint16_t L2CA_FlushChannel(uint16_t lcid, uint16_t num_to_flush) { in L2CA_FlushChannel() argument
1560 p_ccb = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_FlushChannel()
1564 lcid); in L2CA_FlushChannel()
1573 lcid, num_to_flush, fixed_queue_length(p_ccb->xmit_hold_q), in L2CA_FlushChannel()
1576 log::verbose("L2CA_FlushChannel (QUERY) CID: 0x{:04x}", lcid); in L2CA_FlushChannel()
1599 if ((p_buf->layer_specific == 0) && (p_buf->event == lcid)) { in L2CA_FlushChannel()
1626 if (p_buf->event == lcid) num_left++; in L2CA_FlushChannel()