Lines Matching refs:tcb
178 gatt_cb.tcb[i].pending_enc_clcb = std::deque<tGATT_CLCB*>(); in gatt_free()
180 fixed_queue_free(gatt_cb.tcb[i].pending_ind_q, NULL); in gatt_free()
181 gatt_cb.tcb[i].pending_ind_q = NULL; in gatt_free()
183 alarm_free(gatt_cb.tcb[i].conf_timer); in gatt_free()
184 gatt_cb.tcb[i].conf_timer = NULL; in gatt_free()
186 alarm_free(gatt_cb.tcb[i].ind_ack_timer); in gatt_free()
187 gatt_cb.tcb[i].ind_ack_timer = NULL; in gatt_free()
189 fixed_queue_free(gatt_cb.tcb[i].sr_cmd.multi_rsp_q, NULL); in gatt_free()
190 gatt_cb.tcb[i].sr_cmd.multi_rsp_q = NULL; in gatt_free()
192 if (gatt_cb.tcb[i].eatt) in gatt_free()
193 EattExtension::GetInstance()->FreeGattResources(gatt_cb.tcb[i].peer_bda); in gatt_free()
1018 void gatt_data_process(tGATT_TCB& tcb, uint16_t cid, BT_HDR* p_buf) { in gatt_data_process() argument
1037 gatt_send_error_rsp(tcb, cid, GATT_REQ_NOT_SUPPORTED, op_code, 0, false); in gatt_data_process()
1042 gatt_verify_signature(tcb, cid, p_buf); in gatt_data_process()
1046 gatt_server_handle_client_req(tcb, cid, op_code, msg_len, p); in gatt_data_process()
1048 gatt_client_handle_server_rsp(tcb, cid, op_code, msg_len, p); in gatt_data_process()
1158 tGATT_TCB* p_tcb = &gatt_cb.tcb[found_idx]; in gatt_proc_srv_chg()