Searched refs:fixed_cid (Results 1 – 5 of 5) sorted by relevance
/system/bt/stack/l2cap/ |
D | l2c_api.cc | 1630 bool L2CA_RegisterFixedChannel(uint16_t fixed_cid, in L2CA_RegisterFixedChannel() argument 1632 if ((fixed_cid < L2CAP_FIRST_FIXED_CHNL) || in L2CA_RegisterFixedChannel() 1633 (fixed_cid > L2CAP_LAST_FIXED_CHNL)) { in L2CA_RegisterFixedChannel() 1635 fixed_cid); in L2CA_RegisterFixedChannel() 1640 l2cb.fixed_reg[fixed_cid - L2CAP_FIRST_FIXED_CHNL] = *p_freg; in L2CA_RegisterFixedChannel() 1656 bool L2CA_ConnectFixedChnl(uint16_t fixed_cid, const RawAddress& rem_bda) { in L2CA_ConnectFixedChnl() argument 1658 return L2CA_ConnectFixedChnl(fixed_cid, rem_bda, phy); in L2CA_ConnectFixedChnl() 1661 bool L2CA_ConnectFixedChnl(uint16_t fixed_cid, const RawAddress& rem_bda, in L2CA_ConnectFixedChnl() argument 1667 << StringPrintf("CID: 0x%04x ", fixed_cid); in L2CA_ConnectFixedChnl() 1670 if ((fixed_cid < L2CAP_FIRST_FIXED_CHNL) || in L2CA_ConnectFixedChnl() [all …]
|
D | l2c_utils.cc | 2534 bool l2cu_initialize_fixed_ccb(tL2C_LCB* p_lcb, uint16_t fixed_cid, in l2cu_initialize_fixed_ccb() argument 2540 p_ccb = p_lcb->p_fixed_ccbs[fixed_cid - L2CAP_FIRST_FIXED_CHNL]; in l2cu_initialize_fixed_ccb() 2555 p_ccb->local_cid = fixed_cid; in l2cu_initialize_fixed_ccb() 2556 p_ccb->remote_cid = fixed_cid; in l2cu_initialize_fixed_ccb() 2573 p_lcb->p_fixed_ccbs[fixed_cid - L2CAP_FIRST_FIXED_CHNL] = p_ccb; in l2cu_initialize_fixed_ccb() 2581 l2cb.fixed_reg[fixed_cid - L2CAP_FIRST_FIXED_CHNL].default_idle_tout; in l2cu_initialize_fixed_ccb()
|
D | l2c_int.h | 661 extern bool l2cu_initialize_fixed_ccb(tL2C_LCB* p_lcb, uint16_t fixed_cid,
|
/system/bt/stack/include/ |
D | l2c_api.h | 1105 extern bool L2CA_RegisterFixedChannel(uint16_t fixed_cid, 1120 extern bool L2CA_ConnectFixedChnl(uint16_t fixed_cid, 1122 extern bool L2CA_ConnectFixedChnl(uint16_t fixed_cid, const RawAddress& bd_addr, 1139 extern uint16_t L2CA_SendFixedChnlData(uint16_t fixed_cid, 1156 extern bool L2CA_RemoveFixedChnl(uint16_t fixed_cid, const RawAddress& rem_bda); 1176 uint16_t fixed_cid, uint16_t idle_tout);
|
/system/bt/stack/smp/ |
D | smp_utils.cc | 336 uint16_t fixed_cid = L2CAP_SMP_CID; in smp_send_msg_to_L2CAP() local 339 fixed_cid = L2CAP_SMP_BR_CID; in smp_send_msg_to_L2CAP() 348 l2cap_ret = L2CA_SendFixedChnlData(fixed_cid, rem_bda, p_toL2CAP); in smp_send_msg_to_L2CAP()
|