Lines Matching refs:lcid
642 uint16_t lcid, uint16_t result, uint16_t status, in L2CA_ConnectLECocRsp() argument
645 return bluetooth::shim::L2CA_ConnectLECocRsp(p_bd_addr, id, lcid, result, in L2CA_ConnectLECocRsp()
650 << StringPrintf(" CID: 0x%04x Result: %d Status: %d", lcid, result, in L2CA_ConnectLECocRsp()
662 tL2C_CCB* p_ccb = l2cu_find_ccb_by_cid(p_lcb, lcid); in L2CA_ConnectLECocRsp()
706 bool L2CA_GetPeerLECocConfig(uint16_t lcid, tL2CAP_LE_CFG_INFO* peer_cfg) { in L2CA_GetPeerLECocConfig() argument
708 return bluetooth::shim::L2CA_GetPeerLECocConfig(lcid, peer_cfg); in L2CA_GetPeerLECocConfig()
711 L2CAP_TRACE_API("%s CID: 0x%04x", __func__, lcid); in L2CA_GetPeerLECocConfig()
713 tL2C_CCB* p_ccb = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_GetPeerLECocConfig()
715 L2CAP_TRACE_ERROR("%s No CCB for CID:0x%04x", __func__, lcid); in L2CA_GetPeerLECocConfig()
736 bool L2CA_ConnectRsp(const RawAddress& p_bd_addr, uint8_t id, uint16_t lcid, in L2CA_ConnectRsp() argument
739 return bluetooth::shim::L2CA_ConnectRsp(p_bd_addr, id, lcid, result, in L2CA_ConnectRsp()
743 return L2CA_ErtmConnectRsp(p_bd_addr, id, lcid, result, status, NULL); in L2CA_ConnectRsp()
757 bool L2CA_ErtmConnectRsp(const RawAddress& p_bd_addr, uint8_t id, uint16_t lcid, in L2CA_ErtmConnectRsp() argument
761 return bluetooth::shim::L2CA_ErtmConnectRsp(p_bd_addr, id, lcid, result, in L2CA_ErtmConnectRsp()
769 << StringPrintf(" CID:0x%04x Result:%d Status:%d", lcid, result, in L2CA_ErtmConnectRsp()
781 p_ccb = l2cu_find_ccb_by_cid(p_lcb, lcid); in L2CA_ErtmConnectRsp()
995 bool L2CA_GetIdentifiers(uint16_t lcid, uint16_t* rcid, uint16_t* handle) { in L2CA_GetIdentifiers() argument
997 return bluetooth::shim::L2CA_GetIdentifiers(lcid, rcid, handle); in L2CA_GetIdentifiers()
1000 tL2C_CCB* control_block = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_GetIdentifiers()
1824 uint16_t L2CA_FlushChannel(uint16_t lcid, uint16_t num_to_flush) { in L2CA_FlushChannel() argument
1826 return bluetooth::shim::L2CA_FlushChannel(lcid, num_to_flush); in L2CA_FlushChannel()
1833 p_ccb = l2cu_find_ccb_by_cid(NULL, lcid); in L2CA_FlushChannel()
1837 "L2CA_FlushChannel() abnormally returning 0 CID: 0x%04x", lcid); in L2CA_FlushChannel()
1846 lcid, num_to_flush, fixed_queue_length(p_ccb->xmit_hold_q), in L2CA_FlushChannel()
1849 L2CAP_TRACE_API("L2CA_FlushChannel (QUERY) CID: 0x%04x", lcid); in L2CA_FlushChannel()
1876 if ((p_buf->layer_specific == 0) && (p_buf->event == lcid)) { in L2CA_FlushChannel()
1903 if (p_buf->event == lcid) num_left++; in L2CA_FlushChannel()