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

  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_act.c 178 void bta_gattc_int_deregister_cmpl(tBTA_GATTC_RCB *p_clreg, tBTA_GATTC_IF client_if)
180 tBTA_GATTC_CBACK *p_cback = p_clreg->p_cback;
186 GATT_Deregister(p_clreg->client_if);
187 memset(p_clreg, 0, sizeof(tBTA_GATTC_RCB));
207 void bta_gattc_deregister_cmpl(tBTA_GATTC_RCB *p_clreg, tBTA_GATTC_IF client_if)
240 tBTA_GATTC_RCB *p_clreg; local
245 if ((p_clreg = bta_gattc_cl_get_regcb(client_if)) != NULL)
247 p_cback = p_clreg->p_cback;
249 memset(p_clreg, 0, sizeof(tBTA_GATTC_RCB));
273 tBTA_GATTC_RCB *p_clreg; local
315 tBTA_GATTC_RCB *p_clreg = bta_gattc_cl_get_regcb(p_msg->api_conn.client_if); local
360 tBTA_GATTC_RCB *p_clreg; local
537 tBTA_GATTC_RCB *p_clreg; local
701 tBTA_GATTC_RCB *p_clreg = p_clcb->p_rcb; local
    [all...]
bta_gattc_api.c 854 tBTA_GATTC_RCB *p_clreg; local
867 if ((p_clreg = bta_gattc_cl_get_regcb(client_if)) != NULL)
871 if ( p_clreg->notif_reg[i].in_use &&
872 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) &&
873 bta_gattc_charid_compare(&p_clreg->notif_reg[i].char_id, p_char_id))
884 if (!p_clreg->notif_reg[i].in_use)
886 memset((void *)&p_clreg->notif_reg[i], 0, sizeof(tBTA_GATTC_NOTIF_REG));
888 p_clreg->notif_reg[i].in_use = TRUE
933 tBTA_GATTC_RCB *p_clreg; local
    [all...]
bta_gattc_utils.c 558 BOOLEAN bta_gattc_check_notif_registry(tBTA_GATTC_RCB *p_clreg, tBTA_GATTC_SERV *p_srcb,
565 if (p_clreg->notif_reg[i].in_use &&
566 bdcmp(p_clreg->notif_reg[i].remote_bda, p_srcb->server_bda) == 0 &&
567 bta_gattc_charid_compare (&p_clreg->notif_reg[i].char_id, &p_notify->char_id))
769 void bta_gattc_send_open_cback( tBTA_GATTC_RCB *p_clreg, tBTA_GATT_STATUS status,
774 if (p_clreg->p_cback)
779 cb_data.open.client_if = p_clreg->client_if;
783 (*p_clreg->p_cback)(BTA_GATTC_OPEN_EVT, &cb_data);
bta_gattc_int.h 438 extern void bta_gattc_init_bk_conn(tBTA_GATTC_API_OPEN *p_data, tBTA_GATTC_RCB *p_clreg);
440 extern void bta_gattc_send_open_cback( tBTA_GATTC_RCB *p_clreg, tBTA_GATT_STATUS status,
460 extern BOOLEAN bta_gattc_check_notif_registry(tBTA_GATTC_RCB *p_clreg, tBTA_GATTC_SERV *p_srcb, tBTA_GATTC_NOTIFY *p_notify);

Completed in 635 milliseconds