/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/ |
D | esp_gattc_api.h | 268 typedef void (* esp_gattc_cb_t)(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_c… 316 esp_err_t esp_ble_gattc_app_unregister(esp_gatt_if_t gattc_if); 336 esp_err_t esp_ble_gattc_enh_open(esp_gatt_if_t gattc_if, esp_ble_gatt_creat_conn_params_t *esp_gatt… 356 esp_err_t esp_ble_gattc_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_type_t … 377 esp_err_t esp_ble_gattc_aux_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_typ… 397 esp_err_t esp_ble_gattc_close(esp_gatt_if_t gattc_if, uint16_t conn_id); 414 esp_err_t esp_ble_gattc_send_mtu_req (esp_gatt_if_t gattc_if, uint16_t conn_id); 432 esp_err_t esp_ble_gattc_search_service(esp_gatt_if_t gattc_if, uint16_t conn_id, esp_bt_uuid_t *fil… 452 esp_gatt_status_t esp_ble_gattc_get_service(esp_gatt_if_t gattc_if, uint16_t conn_id, esp_bt_uuid_t… 476 esp_gatt_status_t esp_ble_gattc_get_all_char(esp_gatt_if_t gattc_if, [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/api/ |
D | esp_gattc_api.c | 56 esp_err_t esp_ble_gattc_app_unregister(esp_gatt_if_t gattc_if) in esp_ble_gattc_app_unregister() argument 66 arg.app_unreg.gattc_if = gattc_if; in esp_ble_gattc_app_unregister() 71 esp_err_t esp_ble_gattc_enh_open(esp_gatt_if_t gattc_if, esp_ble_gatt_creat_conn_params_t *creat_co… in esp_ble_gattc_enh_open() argument 86 arg.open.gattc_if = gattc_if; in esp_ble_gattc_enh_open() 174 esp_err_t esp_ble_gattc_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_type_t … in esp_ble_gattc_open() argument 183 return esp_ble_gattc_enh_open(gattc_if, &creat_conn_params); in esp_ble_gattc_open() 188 esp_err_t esp_ble_gattc_aux_open(esp_gatt_if_t gattc_if, esp_bd_addr_t remote_bda, esp_ble_addr_typ… in esp_ble_gattc_aux_open() argument 197 return esp_ble_gattc_enh_open(gattc_if, &creat_conn_params); in esp_ble_gattc_aux_open() 201 esp_err_t esp_ble_gattc_close (esp_gatt_if_t gattc_if, uint16_t conn_id) in esp_ble_gattc_close() argument 211 arg.close.conn_id = BTC_GATT_CREATE_CONN_ID(gattc_if, conn_id); in esp_ble_gattc_close() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/ |
D | btc_gattc.c | 22 static inline void btc_gattc_cb_to_app(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_… in btc_gattc_cb_to_app() argument 26 btc_gattc_cb(event, gattc_if, param); in btc_gattc_cb_to_app() 209 BTA_GATTC_AppDeregister(arg->app_unreg.gattc_if); in btc_gattc_app_unregister() 216 BTA_GATTC_Enh_Open(arg->open.gattc_if, arg->open.remote_bda, in btc_gattc_open() 689 status = BTA_GATTC_RegisterForNotifications(arg->reg_for_notify.gattc_if, in btc_gattc_reg_for_notify() 696 btc_gattc_cb_to_app(ESP_GATTC_REG_FOR_NOTIFY_EVT, arg->reg_for_notify.gattc_if, ¶m); in btc_gattc_reg_for_notify() 704 status = BTA_GATTC_DeregisterForNotifications(arg->unreg_for_notify.gattc_if, in btc_gattc_unreg_for_notify() 711 btc_gattc_cb_to_app(ESP_GATTC_UNREG_FOR_NOTIFY_EVT, arg->unreg_for_notify.gattc_if, ¶m); in btc_gattc_unreg_for_notify() 779 BTA_GATTC_CacheAssoc(arg->cache_assoc.gattc_if, in btc_gattc_call_handler() 785 BTA_GATTC_CacheGetAddrList(arg->get_addr_list.gattc_if); in btc_gattc_call_handler() [all …]
|
D | btc_gatt_util.c | 136 uint16_t set_read_value(uint8_t *gattc_if, esp_ble_gattc_cb_param_t *p_dest, tBTA_GATTC_READ *p_src) in set_read_value() argument 142 *gattc_if = BTC_GATT_GET_GATT_IF(p_src->conn_id); in set_read_value()
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/ |
D | btc_gattc.h | 51 esp_gatt_if_t gattc_if; member 55 esp_gatt_if_t gattc_if; member 170 esp_gatt_if_t gattc_if; member 176 esp_gatt_if_t gattc_if; member 186 esp_gatt_if_t gattc_if; member 193 esp_gatt_if_t gattc_if; member
|
D | btc_gatt_util.h | 29 uint16_t set_read_value(uint8_t *gattc_if, esp_ble_gattc_cb_param_t *p_dest, tBTA_GATTC_READ *p_src…
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_act.c | 56 static void bta_gattc_conn_cback(tGATT_IF gattc_if, BD_ADDR bda, UINT16 conn_id, 68 static void bta_gattc_enc_cmpl_cback(tGATT_IF gattc_if, BD_ADDR bda); 1747 static void bta_gattc_conn_cback(tGATT_IF gattc_if, BD_ADDR bda, UINT16 conn_id, in bta_gattc_conn_cback() argument 1754 …APPL_TRACE_WARNING("gattc_conn_cb: if=%d st=%d id=%d rsn=0x%x", gattc_if, connected, conn_id, reas… in bta_gattc_conn_cback() 1781 p_buf->int_conn.client_if = gattc_if; in bta_gattc_conn_cback() 1800 static void bta_gattc_enc_cmpl_cback(tGATT_IF gattc_if, BD_ADDR bda) in bta_gattc_enc_cmpl_cback() argument 1805 if ((p_clcb = bta_gattc_find_clcb_by_cif(gattc_if, bda, BTA_GATT_TRANSPORT_LE)) == NULL) { in bta_gattc_enc_cmpl_cback() 1813 if (!bta_hh_le_is_hh_gatt_if(gattc_if)) { in bta_gattc_enc_cmpl_cback() 1818 APPL_TRACE_DEBUG("bta_gattc_enc_cmpl_cback: cif = %d", gattc_if); in bta_gattc_enc_cmpl_cback() 1825 p_buf->enc_cmpl.client_if = gattc_if; in bta_gattc_enc_cmpl_cback()
|