Home
last modified time | relevance | path

Searched refs:notify (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/
Dbtc_gattc.c901 tBTA_GATTC_NOTIFY *notify = &arg->notify; in btc_gattc_cb_handler() local
903 gattc_if = BTC_GATT_GET_GATT_IF(notify->conn_id); in btc_gattc_cb_handler()
904 param.notify.conn_id = BTC_GATT_GET_CONN_ID(notify->conn_id); in btc_gattc_cb_handler()
905 memcpy(param.notify.remote_bda, notify->bda, sizeof(esp_bd_addr_t)); in btc_gattc_cb_handler()
906 param.notify.handle = notify->handle; in btc_gattc_cb_handler()
907 param.notify.is_notify = (notify->is_notify == TRUE) ? true : false; in btc_gattc_cb_handler()
908 param.notify.value_len = (notify->len > ESP_GATT_MAX_ATTR_LEN) ? \ in btc_gattc_cb_handler()
909 ESP_GATT_MAX_ATTR_LEN : notify->len; in btc_gattc_cb_handler()
910 param.notify.value = notify->value; in btc_gattc_cb_handler()
912 if (notify->is_notify == FALSE) { in btc_gattc_cb_handler()
[all …]
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/
Dmesh_bearer_adapt.c1574 handle = BLE_MESH_GATT_GET_CONN_ID(p_data->notify.conn_id); in bt_mesh_bta_gattc_cb()
1593 if (memcmp(bt_mesh_gattc_info[i].addr.val, p_data->notify.bda, BLE_MESH_ADDR_LEN) || in bt_mesh_bta_gattc_cb()
1594 bt_mesh_gattc_info[i].data_out_handle != p_data->notify.handle || in bt_mesh_bta_gattc_cb()
1595 p_data->notify.is_notify == false) { in bt_mesh_bta_gattc_cb()
1604 p_data->notify.value, p_data->notify.len); in bt_mesh_bta_gattc_cb()
1614 p_data->notify.value, p_data->notify.len); in bt_mesh_bta_gattc_cb()
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/
Desp_gattc_api.h173 …} notify; /*!< Callback parameter for the event `ESP_GATTC_NOTIFY_EVT` */ member
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_act.c2103 tBTA_GATTC_NOTIFY notify; in bta_gattc_process_indicate() local
2134 notify.handle = handle; in bta_gattc_process_indicate()
2136 …if (!bta_gattc_process_srvc_chg_ind(conn_id, p_clrcb, p_srcb, p_clcb, &notify, &p_data->att_value)… in bta_gattc_process_indicate()
2138 if (bta_gattc_check_notif_registry(p_clrcb, p_srcb, &notify)) { in bta_gattc_process_indicate()
2155 bta_gattc_proc_other_indication(p_clcb, op, p_data, &notify); in bta_gattc_process_indicate()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/avrc/
Dbtc_avrc.c321 BOOLEAN notify = (btc_rc_cb.rc_connected) && (btc_rc_cb.rc_ntf[event_id - 1].registered); in send_metamsg_rsp() local
327 if (notify) { in send_metamsg_rsp()
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/
Dbta_gatt_api.h443 tBTA_GATTC_NOTIFY notify; /* notification/indication event data */ member
/hal_espressif-latest/components/bt/host/bluedroid/
DKconfig.in260 int "Max gattc notify(indication) register number"
265 Maximum GATTC notify(indication) register number
/hal_espressif-latest/components/bt/host/bluedroid/bta/hh/
Dbta_hh_le.c2788 bta_hh_le_input_rpt_notify(&p_data->notify); in bta_hh_gattc_callback()
/hal_espressif-latest/components/bt/esp_ble_mesh/
DKconfig.in250 or disable receiving Heartbeat messages and notify them to the application layer.