Lines Matching refs:p_uuid
1133 UINT8 *p_uuid = *p_data; in gatt_parse_uuid_from_cmd() local
1141 STREAM_TO_UINT16 (p_uuid_rec->uu.uuid16, p_uuid); in gatt_parse_uuid_from_cmd()
1150 if (p_uuid[xx] != base_uuid[xx]) in gatt_parse_uuid_from_cmd()
1158 if ((p_uuid[LEN_UUID_128 - 1] == 0) && (p_uuid[LEN_UUID_128 - 2] == 0)) in gatt_parse_uuid_from_cmd()
1160 p_uuid += (LEN_UUID_128 - 4); in gatt_parse_uuid_from_cmd()
1162 STREAM_TO_UINT16(p_uuid_rec->uu.uuid16, p_uuid); in gatt_parse_uuid_from_cmd()
1166 p_uuid += (LEN_UUID_128 - LEN_UUID_32); in gatt_parse_uuid_from_cmd()
1168 STREAM_TO_UINT32(p_uuid_rec->uu.uuid32, p_uuid); in gatt_parse_uuid_from_cmd()
1174 memcpy(p_uuid_rec->uu.uuid128, p_uuid, LEN_UUID_128); in gatt_parse_uuid_from_cmd()
1527 UINT32 gatt_add_sdp_record (tBT_UUID *p_uuid, UINT16 start_hdl, UINT16 end_hdl) in gatt_add_sdp_record() argument
1540 switch (p_uuid->len) in gatt_add_sdp_record()
1543 SDP_AddServiceClassIdList(sdp_handle, 1, &p_uuid->uu.uuid16); in gatt_add_sdp_record()
1548 UINT32_TO_BE_STREAM (p, p_uuid->uu.uuid32); in gatt_add_sdp_record()
1555 ARRAY_TO_BE_STREAM_REVERSE (p, p_uuid->uu.uuid128, LEN_UUID_128); in gatt_add_sdp_record()
1561 GATT_TRACE_ERROR("inavlid UUID len=%d", p_uuid->len); in gatt_add_sdp_record()