Searched refs:LEN_UUID_128 (Results 1 - 25 of 26) sorted by relevance

12

/external/bluetooth/bluedroid/bta/gatt/
H A Dbta_gatts_utils.c36 static const UINT8 base_uuid[LEN_UUID_128] = {0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
48 static void bta_gatt_convert_uuid16_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT16 uuid_16)
50 UINT8 *p = &uuid_128[LEN_UUID_128 - 4];
52 memcpy (uuid_128, base_uuid, LEN_UUID_128);
195 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128];
229 return(memcmp(ps, pt, LEN_UUID_128) == 0);
H A Dbta_gattc_utils.c42 static const UINT8 base_uuid[LEN_UUID_128] = {0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
56 void bta_gatt_convert_uuid16_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT16 uuid_16)
58 UINT8 *p = &uuid_128[LEN_UUID_128 - 4];
60 memcpy (uuid_128, base_uuid, LEN_UUID_128);
75 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128];
112 return(memcmp(ps, pt, LEN_UUID_128) == 0);
472 memcpy(p_uuid->uu.uuid128, pp, LEN_UUID_128);
498 else if (p_des->uuid.len == LEN_UUID_128)
500 memcpy(p_des->uuid.uu.uuid128, p_src->uuid.uu.uuid128, LEN_UUID_128);
[all...]
H A Dbta_gattc_cache.c392 else if (p_uuid->len == LEN_UUID_128)
394 memcpy(pp, p_uuid->uu.uuid128, LEN_UUID_128);
1605 memcpy(uuid.uu.uuid128, p_attr->p_uuid->uuid128, LEN_UUID_128);
H A Dbta_gattc_int.h249 UINT8 uuid128[LEN_UUID_128];
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_util.c74 return LEN_UUID_128;
99 case LEN_UUID_128:
148 case LEN_UUID_128:
189 case LEN_UUID_128:
225 else if (p_uuid->len == LEN_UUID_128)
228 UINT8 *p = &p_uuid->uu.uuid128[LEN_UUID_128 - 4];
H A Dbtif_gatt_multi_adv_util.c384 while (p_adv_data->service_uuid_len >= LEN_UUID_128)
388 memcpy(&uuid.uu, p_adv_data->p_service_uuid, LEN_UUID_128);
405 GKI_getbuf(p_adv_data->service_uuid_len / LEN_UUID_128 * LEN_UUID_16);
428 GKI_getbuf(p_adv_data->service_uuid_len / LEN_UUID_128 * LEN_UUID_32);
442 case (LEN_UUID_128):
454 bt_uuid.uu.uuid128, LEN_UUID_128);
471 p_adv_data->p_service_uuid += LEN_UUID_128;
472 p_adv_data->service_uuid_len -= LEN_UUID_128;
H A Dbtif_gatt_test.c84 else if (bt_uuid.len == LEN_UUID_128)
225 tBT_UUID app_uuid = {LEN_UUID_128,{0xAE}};
H A Dbtif_dm.c239 extern void bta_gatt_convert_uuid16_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT16 uuid_16);
/external/bluetooth/bluedroid/stack/gatt/
H A Dgatt_utils.c79 static const UINT8 base_uuid[LEN_UUID_128] = {0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
965 void gatt_convert_uuid16_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT16 uuid_16)
967 UINT8 *p = &uuid_128[LEN_UUID_128 - 4];
969 memcpy (uuid_128, base_uuid, LEN_UUID_128);
983 void gatt_convert_uuid32_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT32 uuid_32)
985 UINT8 *p = &uuid_128[LEN_UUID_128 - 4];
987 memcpy (uuid_128, base_uuid, LEN_UUID_128);
1002 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128];
1053 return(memcmp(ps, pt, LEN_UUID_128)
[all...]
H A Dgatt_db.c269 p += LEN_UUID_128;
273 ARRAY_TO_STREAM (p, ((tGATT_ATTR128 *)(p_attr16->p_next))->uuid, LEN_UUID_128);
366 attr_uuid.len = LEN_UUID_128;
367 memcpy(attr_uuid.uu.uuid128, ((tGATT_ATTR128 *)p_attr)->uuid, LEN_UUID_128);
972 else if (p_uuid->len == LEN_UUID_128)
976 memcpy(p_attr128->uuid, p_uuid->uu.uuid128, LEN_UUID_128);
1212 p_attr->p_value->uuid.len = LEN_UUID_128;
1217 p_attr->p_value->uuid.len = LEN_UUID_128;
1218 memcpy(p_attr->p_value->uuid.uu.uuid128, p_service->uu.uuid128, LEN_UUID_128);
H A Dgatt_attr.c267 tBT_UUID app_uuid = {LEN_UUID_128, {0}};
273 memset (&app_uuid.uu.uuid128, 0x81, LEN_UUID_128);
H A Dgatt_cl.c109 cl_req.find_type_value.value_len = LEN_UUID_128;
483 uuid_len = LEN_UUID_128;
1007 if (len == LEN_UUID_128)
1011 p_clcb->read_uuid128.result.value.incl_service.service_type.len = LEN_UUID_128;
H A Dgatt_api.c369 (p_descr_uuid->len != LEN_UUID_128 && p_descr_uuid->len != LEN_UUID_16
1206 if (p_reg->in_use && !memcmp(p_app_uuid128->uu.uuid128, p_reg->app_uuid128.uu.uuid128, LEN_UUID_128))
H A Dgatt_int.h210 UINT8 uuid[LEN_UUID_128];
585 extern void gatt_convert_uuid32_to_uuid128(UINT8 uuid_128[LEN_UUID_128], UINT32 uuid_32);
H A Dgatt_sr.c657 ARRAY_TO_STREAM (p, ((tGATT_ATTR128 *) p_attr)->uuid, LEN_UUID_128);
663 p += LEN_UUID_128;
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_adv_filter.c856 else if (p_uuid_cond->uuid.len == LEN_UUID_128)
858 ARRAY_TO_STREAM (p, p_uuid_cond->uuid.uu.uuid128, LEN_UUID_128);
859 len += LEN_UUID_128;
879 else if (p_uuid_cond->uuid.len == LEN_UUID_128)
881 ARRAY_TO_STREAM (p, p_uuid_cond->p_uuid_mask->uuid128_mask, LEN_UUID_128);
882 len += LEN_UUID_128;
H A Dbtm_inq.c3166 ** uuid_size - LEN_UUID_16, LEN_UUID_32, LEN_UUID_128
3189 char buff[LEN_UUID_128 * 2 + 1];
3222 else if( uuid_size == LEN_UUID_128 )
3226 STREAM_TO_ARRAY16(p_uuid_list + yy * LEN_UUID_128, p_uuid_data);
3227 for( xx = 0; xx < LEN_UUID_128; xx++ )
3228 sprintf(buff + xx*2, "%02X", *(p_uuid_list + yy * LEN_UUID_128 + xx));
3274 case LEN_UUID_128:
3314 static const UINT8 base_uuid[LEN_UUID_128] = {0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
3331 case LEN_UUID_128:
3334 for (xx = 0; xx < LEN_UUID_128
[all...]
/external/bluetooth/bluedroid/stack/gap/
H A Dgap_ble.c383 tBT_UUID app_uuid = {LEN_UUID_128,{0}};
390 memset (&app_uuid.uu.uuid128, 0x82, LEN_UUID_128);
434 memset (&app_uuid.uu.uuid128, 0x81, LEN_UUID_128);
/external/bluetooth/bluedroid/stack/sdp/
H A Dsdp_api.c362 else if (SDP_DISC_ATTR_LEN(p_sattr->attr_len_type) == LEN_UUID_128)
364 p_uuid->len = LEN_UUID_128;
365 memcpy(p_uuid->uu.uuid128, p_sattr->attr_value.v.array, LEN_UUID_128);
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_act.c314 tBT_UUID app_uuid = {LEN_UUID_128,{0}};
407 memset (&app_uuid.uu.uuid128, 0x87, LEN_UUID_128);
4379 max_num_uuid = (free_eir_length - 2)/LEN_UUID_128;
4383 if (bta_dm_cb.custom_uuid[custom_uuid_idx].len == LEN_UUID_128)
4399 UINT8_TO_STREAM(p_length, num_uuid * LEN_UUID_128 + 1);
4401 free_eir_length -= num_uuid * LEN_UUID_128 + 2;
5811 tBT_UUID app_uuid = {LEN_UUID_128,{0}};
5815 memset (&app_uuid.uu.uuid128, 0x87, LEN_UUID_128);
/external/bluetooth/bluedroid/bta/hh/
H A Dbta_hh_le.c209 char app_name[LEN_UUID_128 + 1];
210 tBT_UUID app_uuid = {LEN_UUID_128,{0}};
218 memset (app_name, 0, LEN_UUID_128 + 1);
219 strncpy(app_name, "BTA HH OVER LE", LEN_UUID_128);
221 memcpy((void *)app_uuid.uu.uuid128, (void *)app_name, LEN_UUID_128);
/external/bluetooth/bluedroid/stack/include/
H A Dbt_types.h425 #define LEN_UUID_128 16 macro
H A Dbtm_ble_api.h652 UINT8 uuid128_mask[LEN_UUID_128];
/external/libnfc-nci/src/include/
H A Dbt_types.h402 #define LEN_UUID_128 16 macro
/external/bluetooth/bluedroid/bta/include/
H A Dbta_api.h551 UINT8 uuid128_mask[LEN_UUID_128];

Completed in 610 milliseconds

12