Home
last modified time | relevance | path

Searched refs:uuid_len (Results 1 – 8 of 8) sorted by relevance

/external/bluetooth/bluedroid/stack/sdp/
Dsdp_utils.c373 UINT32 seq_len, uuid_len; in sdpu_extract_uid_seq() local
429 uuid_len = 2; in sdpu_extract_uid_seq()
432 uuid_len = 4; in sdpu_extract_uid_seq()
435 uuid_len = 16; in sdpu_extract_uid_seq()
438 BE_STREAM_TO_UINT8 (uuid_len, p); in sdpu_extract_uid_seq()
441 BE_STREAM_TO_UINT16 (uuid_len, p); in sdpu_extract_uid_seq()
444 BE_STREAM_TO_UINT32 (uuid_len, p); in sdpu_extract_uid_seq()
451 if ((uuid_len == 2) || (uuid_len == 4) || (uuid_len == 16)) in sdpu_extract_uid_seq()
453 p_seq->uuid_entry[p_seq->num_uids].len = (UINT16) uuid_len; in sdpu_extract_uid_seq()
454 BE_STREAM_TO_ARRAY (p, p_seq->uuid_entry[p_seq->num_uids].value, (int)uuid_len); in sdpu_extract_uid_seq()
Dsdp_db.c120 UINT16 uuid_len, int nest_level) in find_uuid_in_seq() argument
137 if (sdpu_compare_uuid_arrays (p, len, p_uuid, uuid_len)) in find_uuid_in_seq()
142 if (find_uuid_in_seq (p, len, p_uuid, uuid_len, nest_level + 1)) in find_uuid_in_seq()
/external/bluetooth/bluedroid/stack/gatt/
Dgatt_cl.c452 UINT8 *p = p_data, uuid_len = 0, type; in gatt_process_read_info_rsp() local
468 uuid_len = LEN_UUID_16; in gatt_process_read_info_rsp()
470 uuid_len = LEN_UUID_128; in gatt_process_read_info_rsp()
472 while (len >= uuid_len + 2) in gatt_process_read_info_rsp()
476 if (uuid_len > 0) in gatt_process_read_info_rsp()
478 if (!gatt_parse_uuid_from_cmd(&result.type, uuid_len, &p)) in gatt_process_read_info_rsp()
484 len -= (uuid_len + 2); in gatt_process_read_info_rsp()
Dgatt_sr.c698 UINT16 uuid_len, s_hdl = 0, e_hdl = 0; in gatts_validate_packet_format() local
720 uuid_len = (op_code == GATT_REQ_FIND_TYPE_VALUE) ? 2 : len; in gatts_validate_packet_format()
723 if (gatt_parse_uuid_from_cmd (p_uuid_filter, uuid_len, &p) == FALSE || in gatts_validate_packet_format()
/external/bluetooth/bluedroid/bta/gatt/
Dbta_gattc_utils.c594 p_uuid->len = p_attr->uuid_len; in bta_gattc_pack_attr_uuid()
596 if (p_attr->uuid_len == LEN_UUID_16) in bta_gattc_pack_attr_uuid()
Dbta_gattc_int.h246 UINT16 uuid_len; member
Dbta_gattc_cache.c381 p_attr->uuid_len = p_uuid->len; in bta_gattc_add_attr_to_cache()
1583 if ((uuid.len = p_attr->uuid_len) == LEN_UUID_16) in bta_gattc_cache_save()
/external/bluetooth/bluedroid/stack/btm/
Dbtm_inq.c3263 UINT8 uuid_len; in btm_eir_get_uuid_list() local
3285 p_uuid_data = BTM_CheckEirData( p_eir, complete_type, &uuid_len ); in btm_eir_get_uuid_list()
3288 p_uuid_data = BTM_CheckEirData( p_eir, more_type, &uuid_len ); in btm_eir_get_uuid_list()
3296 *p_num_uuid = uuid_len / uuid_size; in btm_eir_get_uuid_list()