Lines Matching refs:tcb
151 gatt_cb.tcb[i].pending_enc_clcb = std::queue<tGATT_CLCB*>(); in gatt_free()
153 fixed_queue_free(gatt_cb.tcb[i].pending_ind_q, NULL); in gatt_free()
154 gatt_cb.tcb[i].pending_ind_q = NULL; in gatt_free()
156 alarm_free(gatt_cb.tcb[i].conf_timer); in gatt_free()
157 gatt_cb.tcb[i].conf_timer = NULL; in gatt_free()
159 alarm_free(gatt_cb.tcb[i].ind_ack_timer); in gatt_free()
160 gatt_cb.tcb[i].ind_ack_timer = NULL; in gatt_free()
162 fixed_queue_free(gatt_cb.tcb[i].sr_cmd.multi_rsp_q, NULL); in gatt_free()
163 gatt_cb.tcb[i].sr_cmd.multi_rsp_q = NULL; in gatt_free()
165 if (gatt_cb.tcb[i].eatt) in gatt_free()
166 EattExtension::GetInstance()->FreeGattResources(gatt_cb.tcb[i].peer_bda); in gatt_free()
802 void gatt_data_process(tGATT_TCB& tcb, uint16_t cid, BT_HDR* p_buf) { in gatt_data_process() argument
822 gatt_send_error_rsp(tcb, cid, GATT_REQ_NOT_SUPPORTED, op_code, 0, false); in gatt_data_process()
827 gatt_verify_signature(tcb, cid, p_buf); in gatt_data_process()
831 gatt_server_handle_client_req(tcb, cid, op_code, msg_len, p); in gatt_data_process()
833 gatt_client_handle_server_rsp(tcb, cid, op_code, msg_len, p); in gatt_data_process()
932 tGATT_TCB* p_tcb = &gatt_cb.tcb[found_idx]; in gatt_proc_srv_chg()