Searched refs:bta_uuid (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/gatt/ |
D | btc_gattc.c | 248 tBT_UUID bta_uuid = {0}; in btc_gattc_fill_gatt_db_conversion() local 258 btc128_to_bta_uuid(&bta_uuid, db[offset + i].uuid.uu); in btc_gattc_fill_gatt_db_conversion() 259 bta_to_btc_uuid(&svc_result->uuid, &bta_uuid); in btc_gattc_fill_gatt_db_conversion() 269 btc128_to_bta_uuid(&bta_uuid, db[offset + i].uuid.uu); in btc_gattc_fill_gatt_db_conversion() 270 bta_to_btc_uuid(&char_result->uuid, &bta_uuid); in btc_gattc_fill_gatt_db_conversion() 279 btc128_to_bta_uuid(&bta_uuid, db[offset + i].uuid.uu); in btc_gattc_fill_gatt_db_conversion() 280 bta_to_btc_uuid(&descr_result->uuid, &bta_uuid); in btc_gattc_fill_gatt_db_conversion() 291 btc128_to_bta_uuid(&bta_uuid, db[offset + i].uuid.uu); in btc_gattc_fill_gatt_db_conversion() 292 bta_to_btc_uuid(&incl_result->uuid, &bta_uuid); in btc_gattc_fill_gatt_db_conversion() 322 tBT_UUID *bta_uuid = NULL; in btc_ble_gattc_get_service() local [all …]
|
/hal_espressif-latest/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/ |
D | mesh_bearer_adapt.c | 856 static void bta_uuid_to_bt_mesh_uuid(tBT_UUID *bta_uuid, const struct bt_mesh_uuid *uuid) in bta_uuid_to_bt_mesh_uuid() argument 858 assert(uuid != NULL && bta_uuid != NULL); in bta_uuid_to_bt_mesh_uuid() 861 bta_uuid->len = LEN_UUID_16; in bta_uuid_to_bt_mesh_uuid() 862 bta_uuid->uu.uuid16 = BLE_MESH_UUID_16(uuid)->val; in bta_uuid_to_bt_mesh_uuid() 864 bta_uuid->len = LEN_UUID_32; in bta_uuid_to_bt_mesh_uuid() 865 bta_uuid->uu.uuid32 = BLE_MESH_UUID_32(uuid)->val; in bta_uuid_to_bt_mesh_uuid() 867 bta_uuid->len = LEN_UUID_128; in bta_uuid_to_bt_mesh_uuid() 868 memcpy(bta_uuid->uu.uuid128, BLE_MESH_UUID_128(uuid)->val, LEN_UUID_128); in bta_uuid_to_bt_mesh_uuid() 940 tBT_UUID bta_uuid = {0}; in bt_mesh_gatts_service_register() local 949 bta_uuid_to_bt_mesh_uuid(&bta_uuid, (struct bt_mesh_uuid *)svc->attrs[i].user_data); in bt_mesh_gatts_service_register() [all …]
|