HomeSort by relevance Sort by last modified time
    Searched refs:tGATT_TCB (Results 1 - 10 of 10) sorted by null

  /system/bt/stack/gatt/
gatt_int.h 296 } tGATT_TCB;
306 tGATT_TCB* p_tcb; /* associated TCB of this CLCB */
369 tGATT_TCB tcb[GATT_MAX_PHY_CHANNEL];
416 extern bool gatt_disconnect(tGATT_TCB* p_tcb);
420 extern bool gatt_connect(BD_ADDR rem_bda, tGATT_TCB* p_tcb,
422 extern void gatt_data_process(tGATT_TCB* p_tcb, BT_HDR* p_buf);
423 extern void gatt_update_app_use_link_flag(tGATT_IF gatt_if, tGATT_TCB* p_tcb,
427 extern void gatt_set_ch_state(tGATT_TCB* p_tcb, tGATT_CH_STATE ch_state);
428 extern tGATT_CH_STATE gatt_get_ch_state(tGATT_TCB* p_tcb);
439 extern tGATT_STATUS attp_send_cl_msg(tGATT_TCB* p_tcb, uint16_t clcb_idx
    [all...]
gatt_utils.cc 91 void gatt_free_pending_ind(tGATT_TCB* p_tcb) {
112 void gatt_free_pending_enc_queue(tGATT_TCB* p_tcb) {
191 tGATT_VALUE* gatt_add_pending_ind(tGATT_TCB* p_tcb, tGATT_VALUE* p_ind) {
316 bool gatt_is_srv_chg_ind_pending(tGATT_TCB* p_tcb) {
425 tGATT_TCB* gatt_get_tcb_by_idx(uint8_t tcb_idx) {
426 tGATT_TCB* p_tcb = NULL;
443 tGATT_TCB* gatt_find_tcb_by_addr(BD_ADDR bda, tBT_TRANSPORT transport) {
444 tGATT_TCB* p_tcb = NULL;
481 tGATT_TCB* gatt_allocate_tcb_by_bdaddr(BD_ADDR bda, tBT_TRANSPORT transport) {
484 tGATT_TCB* p_tcb = NULL
    [all...]
gatt_main.cc 66 static void gatt_send_conn_cback(tGATT_TCB* p_tcb);
195 bool gatt_connect(BD_ADDR rem_bda, tGATT_TCB* p_tcb, tBT_TRANSPORT transport,
225 bool gatt_disconnect(tGATT_TCB* p_tcb) {
268 bool gatt_update_app_hold_link_status(tGATT_IF gatt_if, tGATT_TCB* p_tcb,
306 void gatt_update_app_use_link_flag(tGATT_IF gatt_if, tGATT_TCB* p_tcb,
356 tGATT_TCB* p_tcb;
380 memset(p_tcb, 0, sizeof(tGATT_TCB));
412 tGATT_TCB* p_tcb = gatt_find_tcb_by_addr(bd_addr, transport);
481 static void gatt_channel_congestion(tGATT_TCB* p_tcb, bool congested) {
501 void gatt_notify_phy_updated(tGATT_TCB* p_tcb, uint8_t tx_phy, uint8_t rx_phy
    [all...]
gatt_auth.cc 94 void gatt_verify_signature(tGATT_TCB* p_tcb, BT_HDR* p_buf) {
155 tGATT_TCB* p_tcb;
211 tGATT_TCB* p_tcb;
252 void gatt_set_sec_act(tGATT_TCB* p_tcb, tGATT_SEC_ACTION sec_act) {
266 tGATT_SEC_ACTION gatt_get_sec_act(tGATT_TCB* p_tcb) {
286 tGATT_TCB* p_tcb = p_clcb->p_tcb;
367 tGATT_STATUS gatt_get_link_encrypt_status(tGATT_TCB* p_tcb) {
424 tGATT_TCB* p_tcb = p_clcb->p_tcb;
gatt_sr.cc 45 uint32_t gatt_sr_enqueue_cmd(tGATT_TCB* p_tcb, uint8_t op_code,
78 bool gatt_sr_cmd_empty(tGATT_TCB* p_tcb) {
91 void gatt_dequeue_sr_cmd(tGATT_TCB* p_tcb) {
228 tGATT_STATUS gatt_sr_process_app_rsp(tGATT_TCB* p_tcb, tGATT_IF gatt_if,
288 void gatt_process_exec_write_req(tGATT_TCB* p_tcb, uint8_t op_code,
344 void gatt_process_read_multi_req(tGATT_TCB* p_tcb, uint8_t op_code,
447 BT_HDR* p_msg, tGATT_TCB* p_tcb, uint8_t op_code, uint16_t s_hdl,
638 void gatts_process_primary_service_req(tGATT_TCB* p_tcb, uint8_t op_code,
696 static void gatts_process_find_info(tGATT_TCB* p_tcb, uint8_t op_code,
750 static void gatts_process_mtu_req(tGATT_TCB* p_tcb, uint16_t len
    [all...]
gatt_cl.cc 48 void gatt_send_prepare_write(tGATT_TCB* p_tcb, tGATT_CLCB* p_clcb);
131 tGATT_TCB* p_tcb = p_clcb->p_tcb;
212 tGATT_TCB* p_tcb = p_clcb->p_tcb;
269 void gatt_send_queue_write_cancel(tGATT_TCB* p_tcb, tGATT_CLCB* p_clcb,
291 bool gatt_check_write_long_terminate(tGATT_TCB* p_tcb, tGATT_CLCB* p_clcb,
330 void gatt_send_prepare_write(tGATT_TCB* p_tcb, tGATT_CLCB* p_clcb) {
375 void gatt_process_find_type_value_rsp(UNUSED_ATTR tGATT_TCB* p_tcb,
423 void gatt_process_read_info_rsp(UNUSED_ATTR tGATT_TCB* p_tcb,
476 void gatt_proc_disc_error_rsp(UNUSED_ATTR tGATT_TCB* p_tcb, tGATT_CLCB* p_clcb,
512 void gatt_process_error_rsp(tGATT_TCB* p_tcb, tGATT_CLCB* p_clcb
    [all...]
gatt_api.cc 499 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
563 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
610 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
659 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
715 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
743 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
792 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
852 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
937 tGATT_TCB* p_tcb = gatt_get_tcb_by_idx(tcb_idx);
    [all...]
att_protocol.cc 323 tGATT_STATUS attp_send_msg_to_l2cap(tGATT_TCB* p_tcb, BT_HDR* p_toL2CAP) {
350 BT_HDR* attp_build_sr_msg(tGATT_TCB* p_tcb, uint8_t op_code,
415 tGATT_STATUS attp_send_sr_msg(tGATT_TCB* p_tcb, BT_HDR* p_msg) {
439 tGATT_STATUS attp_cl_send_cmd(tGATT_TCB* p_tcb, uint16_t clcb_idx,
483 tGATT_STATUS attp_send_cl_msg(tGATT_TCB* p_tcb, uint16_t clcb_idx,
gatt_db.cc 43 tGATT_TCB* p_tcb, uint8_t op_code, uint16_t handle, uint16_t offset,
250 tGATT_TCB* p_tcb, tGATT_SVC_DB* p_db, uint8_t op_code, BT_HDR* p_rsp,
477 tGATT_TCB* p_tcb, tGATT_SVC_DB* p_db, uint8_t op_code, uint16_t handle,
739 tGATT_TCB* p_tcb, uint8_t op_code, uint16_t handle, uint16_t offset,
  /system/bt/stack/btm/
btm_ble_gap.cc     [all...]

Completed in 179 milliseconds