/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/ |
D | bta_gattc_api.c | 96 memcpy(&p_buf->app_uuid, p_app_uuid, sizeof(tBT_UUID)); in BTA_GATTC_AppRegister() 1178 tAPP_UUID *app_uuid = (tAPP_UUID *)uuid; in BTA_GATTC_Discover() local 1191 if (app_uuid) { in BTA_GATTC_Discover() 1192 param.service.len = app_uuid->len; in BTA_GATTC_Discover() 1193 if (app_uuid->len == LEN_UUID_16) { in BTA_GATTC_Discover() 1194 param.service.uu.uuid16 = app_uuid->uuid.uuid16; in BTA_GATTC_Discover() 1195 } else if (app_uuid->len == LEN_UUID_32) { in BTA_GATTC_Discover() 1196 param.service.uu.uuid32 = app_uuid->uuid.uuid32; in BTA_GATTC_Discover() 1197 } else if (app_uuid->len == LEN_UUID_128) { in BTA_GATTC_Discover() 1198 memcpy(param.service.uu.uuid128, app_uuid->uuid.uuid128, LEN_UUID_128); in BTA_GATTC_Discover() [all …]
|
D | bta_gatts_act.c | 185 if (bta_gatts_uuid_compare(p_cb->rcb[i].app_uuid, p_msg->api_reg.app_uuid)) { in bta_gatts_register() 203 memcpy(&cb_data.reg_oper.uuid, &p_msg->api_reg.app_uuid, sizeof(tBT_UUID)); in bta_gatts_register() 210 memcpy(&p_cb->rcb[first_unuse].app_uuid, &p_msg->api_reg.app_uuid, sizeof(tBT_UUID)); in bta_gatts_register() 213 GATT_Register(&p_msg->api_reg.app_uuid, &bta_gatts_cback); in bta_gatts_register()
|
D | bta_gattc_main.c | 548 memcmp(bta_gattc_cb.cl_rcb[i].app_uuid.uu.uuid128, dm_gattc_uuid, 16)) { in bta_gattc_cl_rcb_active_count()
|
D | bta_gatts_api.c | 99 memcpy(&p_buf->app_uuid, p_app_uuid, sizeof(tBT_UUID)); in BTA_GATTS_AppRegister()
|
D | bta_gattc_act.c | 198 tBT_UUID *p_app_uuid = &p_data->api_reg.app_uuid; in bta_gattc_register() 224 memcpy(&p_cb->cl_rcb[i].app_uuid, p_app_uuid, sizeof(tBT_UUID)); in bta_gattc_register() 249 memcpy(&(cb_data.reg_oper.app_uuid), p_app_uuid, sizeof(tBT_UUID)); in bta_gattc_register()
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/include/ |
D | bta_gatts_int.h | 70 tBT_UUID app_uuid; member 188 tBT_UUID app_uuid; member
|
D | bta_gattc_int.h | 116 tBT_UUID app_uuid; member 357 tBT_UUID app_uuid; member
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/wechat_AirSync/ |
D | wx_airsync_prf.c | 239 esp_bt_uuid_t app_uuid = {LEN_UUID_16, {ATT_SVC_AIRSYNC}}; in AirSync_Init() local 256 esp_ble_gatts_app_register(&app_uuid, airsync_profile_cb); in AirSync_Init()
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/ble_button/ |
D | button_pro.c | 288 tBT_UUID app_uuid = {LEN_UUID_16, {ATT_SVC_BUTTON}}; in button_init() local 305 esp_ble_gatts_app_register(&app_uuid, button_profile_cb); in button_init()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gap/ |
D | gap_ble.c | 395 tBT_UUID app_uuid = {LEN_UUID_128, {0}}; in gap_attr_db_init() local 402 memset (&app_uuid.uu.uuid128, 0x82, LEN_UUID_128); in gap_attr_db_init() 405 gap_cb.gatt_if = GATT_Register(&app_uuid, &gap_cback); in gap_attr_db_init() 468 memset (&app_uuid.uu.uuid128, 0x81, LEN_UUID_128); in gap_attr_db_init()
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/ |
D | gatt_attr.c | 443 tBT_UUID app_uuid = {LEN_UUID_128, {0}}; in gatt_profile_db_init() local 449 memset (&app_uuid.uu.uuid128, 0x81, LEN_UUID_128); in gatt_profile_db_init() 453 gatt_cb.gatt_if = GATT_Register(&app_uuid, &gatt_profile_cback); in gatt_profile_db_init()
|
D | gatt_db.c | 814 if (p_rcb->app_uuid.len != LEN_UUID_128) { in gatts_get_attr_value_internal() 823 if (!memcmp(p_rcb->app_uuid.uu.uuid128, service_uuid, LEN_UUID_128)) { in gatts_get_attr_value_internal() 829 if (!memcmp(p_rcb->app_uuid.uu.uuid128, service_uuid, LEN_UUID_128)) { in gatts_get_attr_value_internal()
|
D | gatt_utils.c | 1441 gatt_uuid_compare (*p_app_uuid128, p_sreg->app_uuid ) && in gatt_sr_find_i_rcb_by_app_id() 1474 memcpy (&p_sreg->app_uuid, &p_list->asgn_range.app_uuid128, sizeof(tBT_UUID)); in gatt_sr_alloc_rcb()
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/ |
D | btc_gattc.c | 201 tBT_UUID app_uuid; in btc_gattc_app_register() local 202 app_uuid.len = 2; in btc_gattc_app_register() 203 app_uuid.uu.uuid16 = arg->app_reg.app_id; in btc_gattc_app_register() 204 BTA_GATTC_AppRegister(&app_uuid, btc_gattc_cback); in btc_gattc_app_register() 812 param.reg.app_id = reg_oper->app_uuid.uu.uuid16; in btc_gattc_cb_handler()
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/hh/ |
D | bta_hh_le.c | 209 tBT_UUID app_uuid = {LEN_UUID_128, {0}}; in bta_hh_le_enable() local 221 memcpy((void *)app_uuid.uu.uuid128, (void *)app_name, LEN_UUID_128); in bta_hh_le_enable() 223 BTA_GATTC_AppRegister(&app_uuid, bta_hh_gattc_callback); in bta_hh_le_enable()
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/include/bta/ |
D | bta_gatt_api.h | 300 tBT_UUID app_uuid; member
|
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/include/ |
D | gatt_int.h | 241 tBT_UUID app_uuid; /* applicatino UUID */ member
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/ |
D | mesh_bearer_adapt.c | 1337 if (p_data->reg_oper.app_uuid.len == LEN_UUID_128 && in bt_mesh_bta_gattc_cb() 1338 !memcmp(p_data->reg_oper.app_uuid.uu.uuid128, uuid, 16)) { in bt_mesh_bta_gattc_cb()
|
/hal_espressif-latest/components/bt/host/bluedroid/bta/dm/ |
D | bta_dm_act.c | 6386 tBT_UUID app_uuid = {LEN_UUID_128, {0}}; in bta_dm_gattc_register() local 6389 memset (&app_uuid.uu.uuid128, 0x87, LEN_UUID_128); in bta_dm_gattc_register() 6390 BTA_GATTC_AppRegister(&app_uuid, bta_dm_gattc_callback); in bta_dm_gattc_register()
|