/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_cache.c | 51 UINT16 start_handle, UINT16 end_handle); 849 UINT16 start_handle = 0, end_handle = 0; in bta_gattc_sdp_callback() local 861 start_handle = (UINT16) pe.params[0]; in bta_gattc_sdp_callback() 866 service_uuid.uu.uuid16, start_handle, end_handle); in bta_gattc_sdp_callback() 869 … if (GATT_HANDLE_IS_VALID(start_handle) && GATT_HANDLE_IS_VALID(end_handle) && in bta_gattc_sdp_callback() 873 start_handle, in bta_gattc_sdp_callback() 879 start_handle, end_handle); in bta_gattc_sdp_callback() 1129 cb_data.srvc_res.start_handle = p_cache->s_handle; in bta_gattc_search_service() 1315 p_attr->start_handle = s_handle; in bta_gattc_fill_gatt_db_el() 1328 UINT16 start_handle, UINT16 end_handle, in bta_gattc_get_db_with_opration() argument [all …]
|
D | bta_gattc_api.c | 359 void BTA_GATTC_GetAllChar(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, in BTA_GATTC_GetAllChar() argument 368 start_handle, in BTA_GATTC_GetAllChar() 389 void BTA_GATTC_GetCharByUUID(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, tBT_UUID char_… in BTA_GATTC_GetCharByUUID() argument 398 start_handle, in BTA_GATTC_GetCharByUUID() 404 void BTA_GATTC_GetDescrByUUID(UINT16 conn_id, uint16_t start_handle, uint16_t end_handle, in BTA_GATTC_GetDescrByUUID() argument 414 start_handle, in BTA_GATTC_GetDescrByUUID() 435 void BTA_GATTC_GetIncludeService(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, in BTA_GATTC_GetIncludeService() argument 444 start_handle, in BTA_GATTC_GetIncludeService() 450 void BTA_GATTC_GetDBSize(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, UINT16 *count) in BTA_GATTC_GetDBSize() argument 452 bta_gattc_get_db_size_handle(conn_id, start_handle, end_handle, count); in BTA_GATTC_GetDBSize() [all …]
|
D | bta_gattc_utils.c | 587 UINT16 start_handle, UINT16 end_handle) in bta_gattc_clear_notif_registration() argument 606 if (handle >= start_handle && handle <= end_handle) { in bta_gattc_clear_notif_registration()
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/include/ |
D | btc_gattc.h | 209 uint16_t start_handle, 218 uint16_t start_handle, 224 uint16_t start_handle, 238 uint16_t start_handle, 246 uint16_t start_handle, 251 esp_gatt_status_t btc_ble_gattc_get_db(uint16_t conn_id, uint16_t start_handle, uint16_t end_handle,
|
/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/ |
D | esp_gattc_api.h | 125 uint16_t start_handle; /*!< Service start handle */ member 478 uint16_t start_handle, 532 uint16_t start_handle, 561 uint16_t start_handle, 617 uint16_t start_handle, 648 uint16_t start_handle, 674 …p_ble_gattc_get_db(esp_gatt_if_t gattc_if, uint16_t conn_id, uint16_t start_handle, uint16_t end_h… 724 uint16_t start_handle,
|
D | esp_gatt_defs.h | 650 uint16_t start_handle; /*!< Service start handle. */ member 659 uint16_t start_handle; /*!< Service start handle. */ member
|
/hal_espressif-latest/components/bt/host/bluedroid/api/ |
D | esp_gattc_api.c | 269 uint16_t start_handle, in esp_ble_gattc_get_all_char() argument 276 if ((start_handle == 0) && (end_handle == 0)) { in esp_ble_gattc_get_all_char() 286 return btc_ble_gattc_get_all_char(conn_hdl, start_handle, end_handle, result, count, offset); in esp_ble_gattc_get_all_char() 311 uint16_t start_handle, in esp_ble_gattc_get_char_by_uuid() argument 319 if (start_handle == 0 && end_handle == 0) { in esp_ble_gattc_get_char_by_uuid() 329 …return btc_ble_gattc_get_char_by_uuid(conn_hdl, start_handle, end_handle, char_uuid, result, count… in esp_ble_gattc_get_char_by_uuid() 335 uint16_t start_handle, in esp_ble_gattc_get_descr_by_uuid() argument 349 …return btc_ble_gattc_get_descr_by_uuid(conn_hdl, start_handle, end_handle, char_uuid, descr_uuid, … in esp_ble_gattc_get_descr_by_uuid() 376 uint16_t start_handle, in esp_ble_gattc_get_include_service() argument 384 if (start_handle == 0 && end_handle == 0) { in esp_ble_gattc_get_include_service() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/ |
D | btc_gattc.c | 256 svc_result->start_handle = db[offset + i].start_handle; in btc_gattc_fill_gatt_db_conversion() 289 incl_result->incl_srvc_s_handle = db[offset + i].start_handle; in btc_gattc_fill_gatt_db_conversion() 355 uint16_t start_handle, in btc_ble_gattc_get_all_char() argument 363 BTA_GATTC_GetAllChar(conn_id, start_handle, end_handle, &db, &char_num); in btc_ble_gattc_get_all_char() 412 uint16_t start_handle, in btc_ble_gattc_get_char_by_uuid() argument 423 BTA_GATTC_GetCharByUUID(conn_id, start_handle, end_handle, bta_uuid, &db, &char_num); in btc_ble_gattc_get_char_by_uuid() 444 uint16_t start_handle, in btc_ble_gattc_get_descr_by_uuid() argument 459 BTA_GATTC_GetDescrByUUID(conn_id, start_handle, end_handle, in btc_ble_gattc_get_descr_by_uuid() 514 uint16_t start_handle, in btc_ble_gattc_get_include_service() argument 527 BTA_GATTC_GetIncludeService(conn_id, start_handle, end_handle, &bta_uuid, &db, &incl_num); in btc_ble_gattc_get_include_service() [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_gatt_api.h | 67 UINT16 start_handle; member 335 UINT16 start_handle; member 914 extern void BTA_GATTC_GetAllChar(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, 920 extern void BTA_GATTC_GetCharByUUID(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, tBT_UUI… 923 extern void BTA_GATTC_GetDescrByUUID(UINT16 conn_id, uint16_t start_handle, uint16_t end_handle, 930 extern void BTA_GATTC_GetIncludeService(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, 933 extern void BTA_GATTC_GetDBSize(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, UINT16 *cou… 936 … UINT16 start_handle, UINT16 end_handle, UINT16 char_handle, UINT16 *count); 950 extern void BTA_GATTC_GetGattDb(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle,
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/nimble_host/ |
D | mesh_bearer_adapt.c | 160 uint16_t start_handle; /* Service attribute start handle */ member 312 …h_gattc_info[j].conn.handle == conn_handle) && (bt_mesh_gattc_info[j].start_handle > bt_mesh_gattc… in chr_disced() 325 …ble_gattc_disc_all_chrs(conn_handle, bt_mesh_gattc_info[j].start_handle, bt_mesh_gattc_info[j].end… in chr_disced() 358 bt_mesh_gattc_info[i].start_handle = service->start_handle; in svc_disced() 377 if (bt_mesh_gattc_info[i].start_handle == 0x00 || in svc_disced() 379 (bt_mesh_gattc_info[i].start_handle > bt_mesh_gattc_info[i].end_handle)) { in svc_disced() 385 …ble_gattc_disc_all_chrs(conn_handle, bt_mesh_gattc_info[i].start_handle, bt_mesh_gattc_info[i].end… in svc_disced() 1065 static void bt_mesh_gatts_foreach_attr(uint16_t start_handle, uint16_t end_handle, in bt_mesh_gatts_foreach_attr() argument 1077 if (attr->handle < start_handle || in bt_mesh_gatts_foreach_attr() 1128 uint16_t start_handle; member [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/include/ |
D | bta_gattc_int.h | 534 …ar_notif_registration(tBTA_GATTC_SERV *p_srcb, UINT16 conn_id, UINT16 start_handle, UINT16 end_han… 549 extern void bta_gattc_get_db_size_handle(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, UI… 551 … UINT16 start_handle, UINT16 end_handle, UINT16 char_handle, UINT16 *count); 562 UINT16 start_handle, UINT16 end_handle, 566 extern void bta_gattc_get_gatt_db(UINT16 conn_id, UINT16 start_handle, UINT16 end_handle, btgatt_db…
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/ |
D | mesh_bearer_adapt.c | 87 uint16_t start_handle; /* Service attribute start handle */ member 701 static void bt_mesh_gatts_foreach_attr(uint16_t start_handle, uint16_t end_handle, in bt_mesh_gatts_foreach_attr() argument 713 if (attr->handle < start_handle || in bt_mesh_gatts_foreach_attr() 764 uint16_t start_handle; member 779 pdu.start_handle = sys_cpu_to_le16(incl->handle); in bt_mesh_gatts_attr_read_included() 780 value_len = sizeof(pdu.start_handle) + sizeof(pdu.end_handle); in bt_mesh_gatts_attr_read_included() 1375 bt_mesh_gattc_info[i].start_handle = p_data->srvc_res.start_handle; in bt_mesh_bta_gattc_cb() 1401 if (bt_mesh_gattc_info[i].start_handle == 0x00 || in bt_mesh_bta_gattc_cb() 1403 (bt_mesh_gattc_info[i].start_handle > bt_mesh_gattc_info[i].end_handle)) { in bt_mesh_bta_gattc_cb() 1418 … bt_mesh_gattc_info[i].start_handle, bt_mesh_gattc_info[i].end_handle, in bt_mesh_bta_gattc_cb() [all …]
|