Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/stack/sdp/
Dsdp_utils.c365 UINT32 seq_len, uuid_len; in sdpu_extract_uid_seq() local
421 uuid_len = 2; in sdpu_extract_uid_seq()
424 uuid_len = 4; in sdpu_extract_uid_seq()
427 uuid_len = 16; in sdpu_extract_uid_seq()
430 BE_STREAM_TO_UINT8 (uuid_len, p); in sdpu_extract_uid_seq()
433 BE_STREAM_TO_UINT16 (uuid_len, p); in sdpu_extract_uid_seq()
436 BE_STREAM_TO_UINT32 (uuid_len, p); in sdpu_extract_uid_seq()
443 if ((uuid_len == 2) || (uuid_len == 4) || (uuid_len == 16)) { in sdpu_extract_uid_seq()
444 p_seq->uuid_entry[p_seq->num_uids].len = (UINT16) uuid_len; in sdpu_extract_uid_seq()
445 BE_STREAM_TO_ARRAY (p, p_seq->uuid_entry[p_seq->num_uids].value, (int)uuid_len); in sdpu_extract_uid_seq()
Dsdp_db.c129 UINT16 uuid_len, int nest_level) in find_uuid_in_seq() argument
145 if (sdpu_compare_uuid_arrays (p, len, p_uuid, uuid_len)) { in find_uuid_in_seq()
149 if (find_uuid_in_seq (p, len, p_uuid, uuid_len, nest_level + 1)) { in find_uuid_in_seq()
/hal_espressif-latest/components/bt/host/bluedroid/stack/gatt/
Dgatt_cl.c453 UINT8 *p = p_data, uuid_len = 0, type; in gatt_process_read_info_rsp() local
472 uuid_len = LEN_UUID_16; in gatt_process_read_info_rsp()
474 uuid_len = LEN_UUID_128; in gatt_process_read_info_rsp()
477 while (len >= uuid_len + 2) { in gatt_process_read_info_rsp()
480 if (uuid_len > 0) { in gatt_process_read_info_rsp()
481 if (!gatt_parse_uuid_from_cmd(&result.type, uuid_len, &p)) { in gatt_process_read_info_rsp()
488 len -= (uuid_len + 2); in gatt_process_read_info_rsp()
Dgatt_sr.c869 UINT16 uuid_len, s_hdl = 0, e_hdl = 0; in gatts_validate_packet_format() local
887 uuid_len = (op_code == GATT_REQ_FIND_TYPE_VALUE) ? 2 : len; in gatts_validate_packet_format()
890 if (gatt_parse_uuid_from_cmd (p_uuid_filter, uuid_len, &p) == FALSE || in gatts_validate_packet_format()
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/std/battery/
Dbattery_prf.c107 UINT16 uuid_len = p_data->add_result.char_uuid.len; in bas_gatts_callback() local
109 if (uuid_len == ESP_UUID_LEN_16) { in bas_gatts_callback()
/hal_espressif-latest/components/bt/host/bluedroid/stack/btm/
Dbtm_inq.c2826 UINT8 uuid_len; in btm_eir_get_uuid_list() local
2847 p_uuid_data = BTM_CheckEirData( p_eir, complete_type, &uuid_len ); in btm_eir_get_uuid_list()
2849 p_uuid_data = BTM_CheckEirData( p_eir, more_type, &uuid_len ); in btm_eir_get_uuid_list()
2855 *p_num_uuid = uuid_len / uuid_size; in btm_eir_get_uuid_list()