Home | History | Annotate | Download | only in src

Lines Matching refs:uuid16

62 	uint8_t *uuid16 = NULL;
86 uuid16 = &eir_data[2];
130 uint16_t val16 = uuid16[1];
132 val16 = (val16 << 8) + uuid16[0];
133 service.value.uuid16 = val16;
136 uuid16 += 2;
233 uint16_t uuid16[HCI_MAX_EIR_LENGTH / 2];
279 /* Group all UUID16 types */
286 if (uuid->uuid.value.uuid16 < 0x1100)
289 if (uuid->uuid.value.uuid16 == PNP_INFO_SVCLASS_ID)
292 /* Stop if not enough space to put next UUID16 */
300 if (uuid16[i] == uuid->uuid.value.uuid16)
306 uuid16[uuid_count++] = uuid->uuid.value.uuid16;
320 *ptr++ = (uuid16[i] & 0x00ff);
321 *ptr++ = (uuid16[i] & 0xff00) >> 8;