Lines Matching refs:tGAP_CCB
73 } tGAP_CCB; typedef
77 tGAP_CCB ccb_pool[GAP_MAX_CONNECTIONS];
100 static tGAP_CCB* gap_find_ccb_by_cid(uint16_t cid);
101 static tGAP_CCB* gap_find_ccb_by_handle(uint16_t handle);
102 static tGAP_CCB* gap_allocate_ccb(void);
103 static void gap_release_ccb(tGAP_CCB* p_ccb);
104 static void gap_checks_con_flags(tGAP_CCB* p_ccb);
174 tGAP_CCB* p_ccb; in GAP_ConnOpen()
338 tGAP_CCB* p_ccb = gap_find_ccb_by_handle(gap_handle); in GAP_ConnClose()
374 tGAP_CCB* p_ccb = gap_find_ccb_by_handle(gap_handle); in GAP_ConnReadData()
429 tGAP_CCB* p_ccb; in GAP_GetRxQueueCnt()
465 tGAP_CCB* p_ccb = gap_find_ccb_by_handle(gap_handle); in GAP_ConnBTRead()
485 static bool gap_try_write_queued_data(tGAP_CCB* p_ccb) { in gap_try_write_queued_data()
520 tGAP_CCB* p_ccb = gap_find_ccb_by_handle(gap_handle); in GAP_ConnWriteData()
561 tGAP_CCB* p_ccb = gap_find_ccb_by_handle(gap_handle); in GAP_ConnReconfig()
596 tGAP_CCB* p_ccb; in GAP_ConnSetIdleTimeout()
621 tGAP_CCB* p_ccb = gap_find_ccb_by_handle(gap_handle); in GAP_ConnGetRemoteAddr()
647 tGAP_CCB* p_ccb; in GAP_ConnGetRemMtuSize()
668 tGAP_CCB* p_ccb; in GAP_ConnGetL2CAPCid()
687 tGAP_CCB* p_ccb = gap_find_ccb_by_cid(l2cap_cid); in gap_tx_complete_ind()
698 tGAP_CCB* p_ccb = gap_find_ccb_by_cid(l2cap_cid); in gap_credits_received_cb()
720 tGAP_CCB* p_ccb; in gap_connect_ind()
785 static void gap_checks_con_flags(tGAP_CCB* p_ccb) { in gap_checks_con_flags()
807 tGAP_CCB* p_ccb = (tGAP_CCB*)p_ref_data; in gap_sec_check_complete()
835 tGAP_CCB* p_ccb; in gap_connect_cfm()
890 tGAP_CCB* p_ccb; in gap_config_ind()
934 tGAP_CCB* p_ccb; in gap_config_cfm()
966 tGAP_CCB* p_ccb; in gap_disconnect_ind()
990 tGAP_CCB* p_ccb; in gap_data_ind()
1026 tGAP_CCB* p_ccb = gap_find_ccb_by_cid(lcid); /* Find CCB based on CID */ in gap_congestion_ind()
1049 static tGAP_CCB* gap_find_ccb_by_cid(uint16_t cid) { in gap_find_ccb_by_cid()
1051 tGAP_CCB* p_ccb; in gap_find_ccb_by_cid()
1074 static tGAP_CCB* gap_find_ccb_by_handle(uint16_t handle) { in gap_find_ccb_by_handle()
1075 tGAP_CCB* p_ccb; in gap_find_ccb_by_handle()
1097 static tGAP_CCB* gap_allocate_ccb(void) { in gap_allocate_ccb()
1099 tGAP_CCB* p_ccb; in gap_allocate_ccb()
1104 memset(p_ccb, 0, sizeof(tGAP_CCB)); in gap_allocate_ccb()
1128 static void gap_release_ccb(tGAP_CCB* p_ccb) { in gap_release_ccb()
1145 tGAP_CCB* p_ccb_local = conn.ccb_pool; in gap_release_ccb()