Home
last modified time | relevance | path

Searched refs:app_uuid (Results 1 – 19 of 19) sorted by relevance

/hal_espressif-latest/components/bt/host/bluedroid/bta/gatt/
Dbta_gattc_api.c96 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 …]
Dbta_gatts_act.c185 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()
Dbta_gattc_main.c548 memcmp(bta_gattc_cb.cl_rcb[i].app_uuid.uu.uuid128, dm_gattc_uuid, 16)) { in bta_gattc_cl_rcb_active_count()
Dbta_gatts_api.c99 memcpy(&p_buf->app_uuid, p_app_uuid, sizeof(tBT_UUID)); in BTA_GATTS_AppRegister()
Dbta_gattc_act.c198 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/
Dbta_gatts_int.h70 tBT_UUID app_uuid; member
188 tBT_UUID app_uuid; member
Dbta_gattc_int.h116 tBT_UUID app_uuid; member
357 tBT_UUID app_uuid; member
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/wechat_AirSync/
Dwx_airsync_prf.c239 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/
Dbutton_pro.c288 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/
Dgap_ble.c395 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/
Dgatt_attr.c443 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()
Dgatt_db.c814 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()
Dgatt_utils.c1441 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/
Dbtc_gattc.c201 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/
Dbta_hh_le.c209 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/
Dbta_gatt_api.h300 tBT_UUID app_uuid; member
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/include/
Dgatt_int.h241 tBT_UUID app_uuid; /* applicatino UUID */ member
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/
Dmesh_bearer_adapt.c1337 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/
Dbta_dm_act.c6386 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()