/hal_espressif-3.5.0/examples/bluetooth/bluedroid/coex/a2dp_gatts_coex/main/ |
D | main.c | 116 esp_bt_uuid_t descr_uuid; member 355 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_a_event_handler() 356 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFIG; in gatts_profile_a_event_handler() 357 …escr(gl_profile_tab[PROFILE_A_APP_ID].service_handle, &gl_profile_tab[PROFILE_A_APP_ID].descr_uuid, in gatts_profile_a_event_handler() 503 gl_profile_tab[PROFILE_B_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_b_event_handler() 504 gl_profile_tab[PROFILE_B_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFIG; in gatts_profile_b_event_handler() 505 …escr(gl_profile_tab[PROFILE_B_APP_ID].service_handle, &gl_profile_tab[PROFILE_B_APP_ID].descr_uuid, in gatts_profile_b_event_handler()
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gatt_server/main/ |
D | gatts_demo.c | 159 esp_bt_uuid_t descr_uuid; member 433 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_a_event_handler() 434 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFIG; in gatts_profile_a_event_handler() 444 …escr(gl_profile_tab[PROFILE_A_APP_ID].service_handle, &gl_profile_tab[PROFILE_A_APP_ID].descr_uuid, in gatts_profile_a_event_handler() 602 gl_profile_tab[PROFILE_B_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_b_event_handler() 603 gl_profile_tab[PROFILE_B_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFIG; in gatts_profile_b_event_handler() 604 …escr(gl_profile_tab[PROFILE_B_APP_ID].service_handle, &gl_profile_tab[PROFILE_B_APP_ID].descr_uuid, in gatts_profile_b_event_handler()
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/coex/gattc_gatts_coex/main/ |
D | gattc_gatts_coex.c | 78 esp_bt_uuid_t descr_uuid; member 706 gatts_profile_tab[GATTS_PROFILE_A_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_a_event_handler() 707 …gatts_profile_tab[GATTS_PROFILE_A_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFI… in gatts_profile_a_event_handler() 709 …_tab[GATTS_PROFILE_A_APP_ID].service_handle, &gatts_profile_tab[GATTS_PROFILE_A_APP_ID].descr_uuid, in gatts_profile_a_event_handler() 848 gatts_profile_tab[GATTS_PROFILE_B_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_b_event_handler() 849 …gatts_profile_tab[GATTS_PROFILE_B_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFI… in gatts_profile_b_event_handler() 850 …_tab[GATTS_PROFILE_B_APP_ID].service_handle, &gatts_profile_tab[GATTS_PROFILE_B_APP_ID].descr_uuid, in gatts_profile_b_event_handler()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/btc/profile/std/include/ |
D | btc_gattc.h | 228 esp_bt_uuid_t descr_uuid, 234 esp_bt_uuid_t descr_uuid,
|
D | btc_gatts.h | 104 esp_bt_uuid_t descr_uuid; member
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/api/include/api/ |
D | esp_gatts_api.h | 167 esp_bt_uuid_t descr_uuid; /*!< Characteristic descriptor uuid */ member 421 esp_bt_uuid_t *descr_uuid,
|
D | esp_gattc_api.h | 500 esp_bt_uuid_t descr_uuid, 524 esp_bt_uuid_t descr_uuid,
|
/hal_espressif-3.5.0/examples/system/ota/advanced_https_ota/main/ble_helper/ |
D | bluedroid_gatts.c | 269 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_a_event_handler() 270 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFIG; in gatts_profile_a_event_handler() 280 …escr(gl_profile_tab[PROFILE_A_APP_ID].service_handle, &gl_profile_tab[PROFILE_A_APP_ID].descr_uuid, in gatts_profile_a_event_handler()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/api/ |
D | esp_gatts_api.c | 165 esp_bt_uuid_t *descr_uuid, in esp_ble_gatts_add_char_descr() argument 197 memcpy(&arg.add_descr.descr_uuid, descr_uuid, sizeof(esp_bt_uuid_t)); in esp_ble_gatts_add_char_descr()
|
D | esp_gattc_api.c | 245 esp_bt_uuid_t descr_uuid, in esp_ble_gattc_get_descr_by_uuid() argument 256 …_gattc_get_descr_by_uuid(conn_hdl, start_handle, end_handle, char_uuid, descr_uuid, result, count); in esp_ble_gattc_get_descr_by_uuid() 262 esp_bt_uuid_t descr_uuid, in esp_ble_gattc_get_descr_by_char_handle() argument 278 return btc_ble_gattc_get_descr_by_char_handle(conn_hdl, char_handle, descr_uuid, result, count); in esp_ble_gattc_get_descr_by_char_handle()
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/ble_throughput/throughput_server/main/ |
D | example_ble_server_throughput.c | 181 esp_bt_uuid_t descr_uuid; member 500 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.len = ESP_UUID_LEN_16; in gatts_profile_a_event_handler() 501 gl_profile_tab[PROFILE_A_APP_ID].descr_uuid.uuid.uuid16 = ESP_GATT_UUID_CHAR_CLIENT_CONFIG; in gatts_profile_a_event_handler() 511 …escr(gl_profile_tab[PROFILE_A_APP_ID].service_handle, &gl_profile_tab[PROFILE_A_APP_ID].descr_uuid, in gatts_profile_a_event_handler()
|
/hal_espressif-3.5.0/examples/system/ota/advanced_https_ota/main/ble_helper/include/ |
D | bluedroid_gatts.h | 63 esp_bt_uuid_t descr_uuid; member
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_api.c | 393 tBT_UUID char_uuid, tBT_UUID descr_uuid, in BTA_GATTC_GetDescrByUUID() argument 401 &descr_uuid, in BTA_GATTC_GetDescrByUUID() 408 void BTA_GATTC_GetDescrByCharHandle(UINT16 conn_id, UINT16 char_handle, tBT_UUID descr_uuid, in BTA_GATTC_GetDescrByCharHandle() argument 416 &descr_uuid, in BTA_GATTC_GetDescrByCharHandle()
|
D | bta_gattc_cache.c | 1309 tBT_UUID *descr_uuid, in bta_gattc_get_db_with_opration() argument 1454 … (descr_uuid == NULL || bta_gattc_uuid_compare(&p_desc->uuid, descr_uuid, TRUE))) || in bta_gattc_get_db_with_opration() 1455 … (op == GATT_OP_GET_DESCRI_BY_HANDLE && bta_gattc_uuid_compare(&p_desc->uuid, descr_uuid, TRUE))) { in bta_gattc_get_db_with_opration()
|
D | bta_gatts_api.c | 292 memcpy(&p_buf->descr_uuid, p_descr_uuid, sizeof(tBT_UUID)); in BTA_GATTS_AddCharDescriptor()
|
D | bta_gatts_act.c | 471 &p_msg->api_add_char_descr.descr_uuid, p_attr_val, in bta_gatts_add_char_descr() 478 memcpy(&cb_data.add_result.char_uuid, &p_msg->api_add_char_descr.descr_uuid, sizeof(tBT_UUID)); in bta_gatts_add_char_descr()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/stack/gatt/ |
D | gatt_attr.c | 363 tBT_UUID descr_uuid = {LEN_UUID_16, {GATT_UUID_CHAR_CLIENT_CONFIG}}; in gatt_profile_db_init() local 372 …GATTS_AddCharDescriptor (service_handle, GATT_PERM_READ | GATT_PERM_WRITE , &descr_uuid, &attr_val… in gatt_profile_db_init()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/btc/profile/std/gatt/ |
D | btc_gattc.c | 439 esp_bt_uuid_t descr_uuid, in btc_ble_gattc_get_descr_by_uuid() argument 449 btc_to_bta_uuid(&bta_descr_uuid, &descr_uuid); in btc_ble_gattc_get_descr_by_uuid() 474 esp_bt_uuid_t descr_uuid, in btc_ble_gattc_get_descr_by_char_handle() argument 482 btc_to_bta_uuid(&bta_descr_uuid, &descr_uuid); in btc_ble_gattc_get_descr_by_char_handle()
|
D | btc_gatts.c | 663 btc_to_bta_uuid(&uuid, &arg->add_descr.descr_uuid); in btc_gatts_call_handler() 867 bta_to_btc_uuid(¶m.add_char_descr.descr_uuid, &p_data->add_result.char_uuid); in btc_gatts_cb_handler()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/gatt/include/ |
D | bta_gatts_int.h | 106 tBT_UUID descr_uuid; member
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/hh/ |
D | bta_hh_le.c | 594 tBT_UUID descr_uuid; in bta_hh_le_read_char_dscrpt() local 601 descr_uuid.len = LEN_UUID_16; in bta_hh_le_read_char_dscrpt() 602 descr_uuid.uu.uuid16 = char_descp_uuid; in bta_hh_le_read_char_dscrpt() 607 &descr_uuid, in bta_hh_le_read_char_dscrpt() 2008 UINT16 descr_uuid = p_data->descr_type.uuid.uu.uuid16; in bta_hh_le_read_battery_level_descr_cmpl() local 2011 if (descr_uuid == GATT_UUID_RPT_REF_DESCR) { in bta_hh_le_read_battery_level_descr_cmpl()
|
/hal_espressif-3.5.0/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_gatt_api.h | 900 tBT_UUID char_uuid, tBT_UUID descr_uuid, 903 extern void BTA_GATTC_GetDescrByCharHandle(UINT16 conn_id, UINT16 char_handle, tBT_UUID descr_uuid,
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gatt_security_server/main/ |
D | example_ble_sec_gatts_demo.c | 92 esp_bt_uuid_t descr_uuid; member
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble_50/ble50_security_server/main/ |
D | ble50_sec_gatts_demo.c | 74 esp_bt_uuid_t descr_uuid; member
|
/hal_espressif-3.5.0/examples/bluetooth/bluedroid/ble/gatt_server_service_table/main/ |
D | gatts_table_creat_demo.c | 147 esp_bt_uuid_t descr_uuid; member
|