Home | History | Annotate | Download | only in sdp

Lines Matching refs:p_uuid

333 **                  p_uuid     - output parameter to save the UUID found.
338 BOOLEAN SDP_FindServiceUUIDInRec(tSDP_DISC_REC *p_rec, tBT_UUID * p_uuid)
356 p_uuid->len = LEN_UUID_16;
357 p_uuid->uu.uuid16 = p_sattr->attr_value.v.u16;
361 p_uuid->len = LEN_UUID_128;
362 memcpy(p_uuid->uu.uuid128, p_sattr->attr_value.v.array, LEN_UUID_128);
366 p_uuid->len = LEN_UUID_32;
367 p_uuid->uu.uuid32 = p_sattr->attr_value.v.u32;
389 p_uuid->len = 2;
390 p_uuid->uu.uuid16 = p_extra_sattr->attr_value.v.u16;
405 p_uuid->len = 2;
406 p_uuid->uu.uuid16 = p_attr->attr_value.v.u16;
424 ** p_uuid - output parameter to save the UUID found.
429 BOOLEAN SDP_FindServiceUUIDInRec_128bit(tSDP_DISC_REC *p_rec, tBT_UUID * p_uuid)
448 p_uuid->len = 16;
449 memcpy(p_uuid->uu.uuid128, p_sattr->attr_value.v.array, MAX_UUID_SIZE);
462 p_uuid->len = 16;
463 memcpy(p_uuid->uu.uuid128, p_attr->attr_value.v.array, MAX_UUID_SIZE);
658 tSDP_DISC_REC *SDP_FindServiceUUIDInDb (tSDP_DISCOVERY_DB *p_db, tBT_UUID *p_uuid, tSDP_DISC_REC *p_start_rec)
686 printf("uuid len=%d ", p_uuid->len);
687 if (p_uuid->len == 2)
689 printf("uuid=0x%x \n", p_uuid->uu.uuid16);
696 if (sdpu_compare_uuid_with_attr (p_uuid, p_sattr))
706 if (sdpu_compare_uuid_with_attr (p_uuid, p_attr))