Home
last modified time | relevance | path

Searched refs:tL2C_RCB (Results 1 – 5 of 5) sorted by relevance

/system/bt/stack/l2cap/
Dl2c_int.h249 } tL2C_RCB; typedef
292 tL2C_RCB* p_rcb; /* Registration CB for this Channel */
476 tL2C_RCB rcb_pool[MAX_L2CAP_CLIENTS]; /* Registration info pool */
516 tL2C_RCB ble_rcb_pool[BLE_MAX_L2CAP_CLIENTS]; /* Registration info pool */
676 extern tL2C_RCB* l2cu_allocate_rcb(uint16_t psm);
677 extern tL2C_RCB* l2cu_find_rcb_by_psm(uint16_t psm);
678 extern void l2cu_release_rcb(tL2C_RCB* p_rcb);
679 extern void l2cu_release_ble_rcb(tL2C_RCB* p_rcb);
680 extern tL2C_RCB* l2cu_allocate_ble_rcb(uint16_t psm);
681 extern tL2C_RCB* l2cu_find_ble_rcb_by_psm(uint16_t psm);
Dl2c_api.cc63 tL2C_RCB* p_rcb; in L2CA_Register()
126 tL2C_RCB* p_rcb; in L2CA_Deregister()
313 tL2C_RCB* p_rcb = l2cu_find_rcb_by_psm(psm); in L2CA_ErtmConnectReq()
421 tL2C_RCB* p_rcb; in L2CA_RegisterLECoc()
469 tL2C_RCB* p_rcb = l2cu_find_ble_rcb_by_psm(psm); in L2CA_DeregisterLECoc()
523 tL2C_RCB* p_rcb = l2cu_find_ble_rcb_by_psm(psm); in L2CA_ConnectLECocReq()
698 tL2C_RCB* registration_control_block = channel_control_block->p_rcb; in L2CA_SetConnectionCallbacks()
700 registration_control_block = (tL2C_RCB*)osi_calloc(sizeof(tL2C_RCB)); in L2CA_SetConnectionCallbacks()
1235 tL2C_RCB* p_rcb; in L2CA_LocalLoopbackReq()
Dl2c_utils.cc1565 tL2C_RCB* p_rcb = p_ccb->p_rcb; in l2cu_release_ccb()
1683 tL2C_RCB* l2cu_allocate_rcb(uint16_t psm) { in l2cu_allocate_rcb()
1684 tL2C_RCB* p_rcb = &l2cb.rcb_pool[0]; in l2cu_allocate_rcb()
1709 tL2C_RCB* l2cu_allocate_ble_rcb(uint16_t psm) { in l2cu_allocate_ble_rcb()
1710 tL2C_RCB* p_rcb = &l2cb.ble_rcb_pool[0]; in l2cu_allocate_ble_rcb()
1734 void l2cu_release_rcb(tL2C_RCB* p_rcb) { in l2cu_release_rcb()
1748 void l2cu_release_ble_rcb(tL2C_RCB* p_rcb) { in l2cu_release_ble_rcb()
1793 tL2C_RCB* l2cu_find_rcb_by_psm(uint16_t psm) { in l2cu_find_rcb_by_psm()
1794 tL2C_RCB* p_rcb = &l2cb.rcb_pool[0]; in l2cu_find_rcb_by_psm()
1815 tL2C_RCB* l2cu_find_ble_rcb_by_psm(uint16_t psm) { in l2cu_find_ble_rcb_by_psm()
[all …]
Dl2c_main.cc375 tL2C_RCB* p_rcb = l2cu_find_rcb_by_psm(con_info.psm); in process_l2cap_cmd()
439 tL2C_RCB* p_rcb = p_ccb->p_rcb; in process_l2cap_cmd()
Dl2c_ble.cc477 tL2C_RCB* p_rcb; in l2cble_process_sig_cmd()